* fix: incorrect await rejection following arrow func in params * expressionScope.exit() shifted to end * test added for yield
5 lines
67 B
JavaScript
5 lines
67 B
JavaScript
(async function () {
|
|
function f(_=()=>null) {}
|
|
await null;
|
|
});
|