Add a few more JS styles for escaped chars & keywords, also tests

This commit is contained in:
Garen Torikian 2012-03-22 18:17:01 +01:00
commit ee667179b3
4 changed files with 68 additions and 26 deletions

View file

@ -1,5 +1,5 @@
function foo(items) {
for (var i=0; i<items.length; i++) {
alert(items[i] + "juhu");
alert(items[i] + "juhu\n");
} // Real Tab.
}