enhance conditionals (#3798)

This commit is contained in:
Alex Lam S.L
2020-04-18 15:32:22 +01:00
committed by GitHub
parent 60d4e7b09f
commit fd6144d95b
4 changed files with 99 additions and 43 deletions

View File

@@ -1384,7 +1384,7 @@ hoist_decl: {
}
expect: {
var a, b;
x() ? y() : z();
(x() ? y : z)();
}
}