* fix: allow await within SCOPE_FUNCTION under static block * perf: scan scopeStack for once * add new test case * chore: update allowlist
4 lines
73 B
JavaScript
4 lines
73 B
JavaScript
var C;
|
|
// await in body is allowed
|
|
C = class { static { () => await } };
|