quick-lint-js
quick-lint-js copied to clipboard
8$: Improve error when using yield outside generator functions
function f() {
yield 42;
}
We probably just need to do the same thing we do with await
for non-async functions.