diff options
author | Alon Zakai <azakai@mozilla.com> | 2010-11-13 20:19:49 -0800 |
---|---|---|
committer | Alon Zakai <azakai@mozilla.com> | 2010-11-13 20:19:49 -0800 |
commit | 1af4b1405eb497741aa63e0a9421d47f6166287a (patch) | |
tree | 9730be711f047ec485e47f2571feb51da231235e /src/compiler.js | |
parent | 98a5011896379e539b2cb4c5ab1599294d278737 (diff) |
remove unnecessary line splitting and recombining
Diffstat (limited to 'src/compiler.js')
-rw-r--r-- | src/compiler.js | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/compiler.js b/src/compiler.js index 13b2d3cc..7626bde5 100644 --- a/src/compiler.js +++ b/src/compiler.js @@ -41,8 +41,7 @@ do { if (line == null) break; lines.push(line); } while(true); -var data = lines.join("\n"); // Do it -print(JSify(analyzer(intertyper(data)))); +print(JSify(analyzer(intertyper(lines)))); |