aboutsummaryrefslogtreecommitdiff
path: root/src/utility.js
diff options
context:
space:
mode:
authorAlon Zakai <alonzakai@gmail.com>2011-05-16 14:01:06 -0700
committerAlon Zakai <alonzakai@gmail.com>2011-05-16 14:01:06 -0700
commit67fd8548d4cd14ec829d8bac929e8c59863b53eb (patch)
tree3e879ebea38999eaffeb211eb98bcf364353c5c2 /src/utility.js
parentdf3638c87ae2c9c617bf04adbc7140a7155cc844 (diff)
compiler code is now js strict mode compliant
Diffstat (limited to 'src/utility.js')
-rw-r--r--src/utility.js1
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) {