blob: e86b67d261e3f7fa51e8a0c3ca58f630010fbb6c (
plain)
1
2
3
4
5
6
7
8
|
// |jit-test| error: SyntaxError
// Remove once Top-level await is enabled by default: Bug #1681046
r = parseModule(`
for await (var x of this) {}
`);
r.declarationInstantiation();
r.evaluation();
|