Fix recursive async function expressions (#9039)

* Fix recursive async function expressions

* Update fixtures
This commit is contained in:
Nicolò Ribaudo
2018-11-19 17:19:54 +01:00
committed by GitHub
parent 8c7d4b55c9
commit c11cdcb6d8
14 changed files with 90 additions and 20 deletions

View File

@@ -32,9 +32,11 @@ function () {
}, _callee, this);
}));
return function test1() {
function test1() {
return _test.apply(this, arguments);
};
}
return test1;
}();
_proto.test2 =