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
+2 -2
View File
@@ -19,9 +19,9 @@ function test()
throw "error";
}
} catch (e) {
return 0;
return 1;
}
return 1;
return 0;
}
assert(test());
+2 -2
View File
@@ -30,9 +30,9 @@ function test()
try {
a();
} catch (e) {
return 0;
return 1;
}
return 1;
return 0;
}
assert(test());