enhance booleans (#3657)

This commit is contained in:
Alex Lam S.L
2019-12-30 22:41:11 +08:00
committed by GitHub
parent 78c8efd851
commit 4dbdac9c31
4 changed files with 78 additions and 27 deletions

View File

@@ -1911,14 +1911,14 @@ issue_2737_2: {
}
input: {
(function(bar) {
for (;bar(); ) break;
for (;bar();) break;
})(function qux() {
return console.log("PASS"), qux;
});
}
expect: {
(function(bar) {
for (;bar(); ) break;
for (;bar();) break;
})(function qux() {
return console.log("PASS"), qux;
});