improve handling of declaration statements (#4980)

This commit is contained in:
Alex Lam S.L
2021-05-30 09:32:48 +01:00
committed by GitHub
parent 55a230daa8
commit 06e3dbc089
3 changed files with 127 additions and 8 deletions

View File

@@ -5236,7 +5236,7 @@ issue_4265: {
expect: {
function f() {
return console, function() {
return console.log(a);
console.log(a);
var a;
}(), 0;
}