Fix bytecode generation of binary expressions. Fix bytecode generation of query operator. Fix tests.
This commit is contained in:
@@ -19,9 +19,9 @@ function test()
|
||||
throw "error";
|
||||
}
|
||||
} catch (e) {
|
||||
return 0;
|
||||
return 1;
|
||||
}
|
||||
return 1;
|
||||
return 0;
|
||||
}
|
||||
|
||||
assert(test());
|
||||
@@ -30,9 +30,9 @@ function test()
|
||||
try {
|
||||
a();
|
||||
} catch (e) {
|
||||
return 0;
|
||||
return 1;
|
||||
}
|
||||
return 1;
|
||||
return 0;
|
||||
}
|
||||
|
||||
assert(test());
|
||||
Reference in New Issue
Block a user