Fix bytecode generation of binary expressions. Fix bytecode generation of query operator. Fix tests.

This commit is contained in:
Ilmir Usmanov
2014-10-15 20:08:38 +04:00
parent aaadfec530
commit e1e7752a62
8 changed files with 35 additions and 24 deletions
+3 -3
View File
@@ -17,11 +17,11 @@ function test()
try {
throw "error";
} catch (e) {
return 0;
return 1;
} finally {
}
return 1;
return 0;
}
assert(test());
assert(test());