diff options
author | Alon Zakai <alonzakai@gmail.com> | 2011-08-30 16:42:22 -0700 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2011-08-30 16:42:22 -0700 |
commit | a05dd4524a3ecab9fd43da6cfc3707f0f84875ea (patch) | |
tree | 4bab141b7613bde61e3ce95de66be205bde0247d | |
parent | 4943a80e08e0c5bfc97fad9de625d6a7d24548f9 (diff) | |
parent | feee402bb4b97a94c4821d1eb69cd24c265ef04e (diff) |
Merge pull request #76 from max99x/master
Fix for eliminator test, followup for pull #75
-rw-r--r-- | tools/eliminator/eliminator-test-output.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/eliminator/eliminator-test-output.js b/tools/eliminator/eliminator-test-output.js index 19faa80d..2324124e 100644 --- a/tools/eliminator/eliminator-test-output.js +++ b/tools/eliminator/eliminator-test-output.js @@ -5,7 +5,7 @@ function f() { HEAP[123] = (GLOB[1] + 1) / 2; } -var g = function(a1, a2) { +var g = (function(a1, a2) { var a = 1; var c = a * 2 - 1; @@ -39,7 +39,7 @@ var g = function(a1, a2) { unquoted: 3, 4: 5 }; -}; +}); function h() { var out; bar(hello); |