diff options
author | Alon Zakai <alonzakai@gmail.com> | 2011-05-16 14:01:06 -0700 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2011-05-16 14:01:06 -0700 |
commit | 67fd8548d4cd14ec829d8bac929e8c59863b53eb (patch) | |
tree | 3e879ebea38999eaffeb211eb98bcf364353c5c2 /src/utility.js | |
parent | df3638c87ae2c9c617bf04adbc7140a7155cc844 (diff) |
compiler code is now js strict mode compliant
Diffstat (limited to 'src/utility.js')
-rw-r--r-- | src/utility.js | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/utility.js b/src/utility.js index 64d9011a..2fb18e0d 100644 --- a/src/utility.js +++ b/src/utility.js @@ -50,6 +50,7 @@ function assertEq(a, b) { print('Stack: ' + new Error().stack); throw 'Should have been equal: ' + a + ' : ' + b; } + return false; } function assertTrue(a, msg) { |