fix various corner cases (#3126)

- augment ufuzz/reminify test options

fixes #3125
This commit is contained in:
Alex Lam S.L
2018-05-07 07:36:25 +08:00
committed by GitHub
parent 6b91d12ec3
commit df8a99439a
4 changed files with 132 additions and 10 deletions

View File

@@ -2303,3 +2303,19 @@ issue_3076: {
}
expect_stdout: "PASS"
}
issue_3125: {
options = {
inline: true,
unsafe: true,
}
input: {
console.log(function() {
return "PASS";
}.call());
}
expect: {
console.log("PASS");
}
expect_stdout: "PASS"
}