Sneh Khatri a6a526968d
fix: incorrect await rejection following arrow function in parameters (fixes #13872) (#13928)
* fix: incorrect await rejection following arrow func in params

* expressionScope.exit() shifted to end

* test added for yield
2021-11-05 15:41:31 -04:00

5 lines
67 B
JavaScript

(async function () {
function f(_=()=>null) {}
await null;
});