[7.0] Change for-await to use new AST (#5321)
This commit is contained in:
committed by
Henry Zhu
parent
ca78da6501
commit
7c62278dcd
@@ -18,11 +18,11 @@ async function a() {
|
||||
for ({ a } in {}) {}
|
||||
for ({ a } of []) {}
|
||||
async function a() {
|
||||
for ({ a } of []) {}
|
||||
for await ({ a } of []) {}
|
||||
}
|
||||
|
||||
for (a in {}) {}
|
||||
for (a of []) {}
|
||||
async function a() {
|
||||
for (a of []) {}
|
||||
for await (a of []) {}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user