diff options
author | Alon Zakai <alonzakai@gmail.com> | 2012-03-19 13:21:03 -0700 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2012-03-19 13:25:46 -0700 |
commit | ea490e9c7f6f98b0df1de1e6259a86704d8d150d (patch) | |
tree | 696a62faf94dda343f0ed32f965412f6171e8716 /src/compiler.js | |
parent | 10cfa9fc93ab611fb8c94aed563513fe9c124644 (diff) |
refactor use of this[..] in shell.js to use Module[..]
Diffstat (limited to 'src/compiler.js')
-rw-r--r-- | src/compiler.js | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/compiler.js b/src/compiler.js index 2e95552d..c39927e7 100644 --- a/src/compiler.js +++ b/src/compiler.js @@ -8,7 +8,8 @@ try { } catch(e) {} -// The environment setup code appears here, in shell.js, in js_optimizer.js and in tests/hello_world.js because it can't be shared. Keep them in sync! +// The environment setup code appears here, in js_optimizer.js and in tests/hello_world.js because it can't be shared. Keep them in sync! +// It also appears, in modified form, in shell.js. // *** Environment setup code *** var arguments_ = []; |