enhance inline (#3767)

This commit is contained in:
Alex Lam S.L
2020-04-10 03:48:24 +01:00
committed by GitHub
parent 41eb4f1725
commit b35f4c5a83
6 changed files with 144 additions and 60 deletions

View File

@@ -2289,11 +2289,10 @@ redefine_farg_2: {
console.log(f([]), g([]), h([]));
}
expect: {
console.log((a = [], typeof a), "number",function(a, b) {
console.log(typeof [], "number",function(a, b) {
a = b;
return typeof a;
}([]));
var a;
}
expect_stdout: "object number undefined"
}