mirror of
https://github.com/tc39/test262.git
synced 2025-07-27 07:54:41 +02:00
Add more tests for for (async of
edge-cases (#2983)
This commit is contained in:
parent
c11d6b00bc
commit
9da1d6119c
18
test/language/statements/for-of/head-lhs-async-escaped.js
Normal file
18
test/language/statements/for-of/head-lhs-async-escaped.js
Normal file
@ -0,0 +1,18 @@
|
|||||||
|
// Copyright (C) 2021 Stuart Cook. All rights reserved.
|
||||||
|
// This code is governed by the BSD license found in the LICENSE file.
|
||||||
|
|
||||||
|
/*---
|
||||||
|
esid: sec-for-in-and-for-of-statements
|
||||||
|
description: >
|
||||||
|
The left-hand-side of a for-of loop may be the identifier `async` written
|
||||||
|
with an escape sequence.
|
||||||
|
info: |
|
||||||
|
ForInOfStatement[Yield, Await, Return] :
|
||||||
|
for ( [lookahead ∉ { let, async of }] LeftHandSideExpression[?Yield, ?Await] of AssignmentExpression[+In, ?Yield, ?Await] ) Statement[?Yield, ?Await, ?Return]
|
||||||
|
---*/
|
||||||
|
|
||||||
|
let async;
|
||||||
|
|
||||||
|
for (\u0061sync of [7]);
|
||||||
|
|
||||||
|
assert.sameValue(async, 7);
|
18
test/language/statements/for-of/head-lhs-async-parens.js
Normal file
18
test/language/statements/for-of/head-lhs-async-parens.js
Normal file
@ -0,0 +1,18 @@
|
|||||||
|
// Copyright (C) 2021 Stuart Cook. All rights reserved.
|
||||||
|
// This code is governed by the BSD license found in the LICENSE file.
|
||||||
|
|
||||||
|
/*---
|
||||||
|
esid: sec-for-in-and-for-of-statements
|
||||||
|
description: >
|
||||||
|
The left-hand-side of a for-of loop may be the identifier `async`
|
||||||
|
surrounded by parentheses.
|
||||||
|
info: |
|
||||||
|
ForInOfStatement[Yield, Await, Return] :
|
||||||
|
for ( [lookahead ∉ { let, async of }] LeftHandSideExpression[?Yield, ?Await] of AssignmentExpression[+In, ?Yield, ?Await] ) Statement[?Yield, ?Await, ?Return]
|
||||||
|
---*/
|
||||||
|
|
||||||
|
let async;
|
||||||
|
|
||||||
|
for ((async) of [7]);
|
||||||
|
|
||||||
|
assert.sameValue(async, 7);
|
Loading…
x
Reference in New Issue
Block a user