summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/language/statements/for-of/head-lhs-async-dot.js
blob: 17df3476350a8b1a8056d91aafd336e2a7ca0e03 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// Copyright (C) 2021 Kevin Gibbons. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.

/*---
description: leading `async` token in for-of LHS
info: |
  The `async` token is allowed in the LHS if not followed by `of`
esid: sec-for-in-and-for-of-statements
---*/

var async = { x: 0 };

for (async.x of [1]) ;

assert.sameValue(async.x, 1);

reportCompare(0, 0);