mirror of
https://github.com/tc39/test262.git
synced 2025-05-29 03:00:31 +02:00
This adds tests for implementation bugs in SpiderMonkey [1], plus additional tests for implementation bugs in V8 and JSC. [1] https://bugzilla.mozilla.org/show_bug.cgi?id=1723155
26 lines
552 B
JavaScript
26 lines
552 B
JavaScript
// Copyright (C) 2021 André Bargull. All rights reserved.
|
|
// This code is governed by the BSD license found in the LICENSE file.
|
|
|
|
/*---
|
|
description: >
|
|
Private identifiers aren't valid simple assignment references.
|
|
info: |
|
|
Syntax
|
|
for ( LeftHandSideExpression in Expression ) Statement
|
|
esid: sec-for-in-and-for-of-statements-static-semantics-early-errors
|
|
negative:
|
|
phase: parse
|
|
type: SyntaxError
|
|
features: [class-fields-private, class-fields-private-in]
|
|
---*/
|
|
|
|
$DONOTEVALUATE();
|
|
|
|
class C {
|
|
#field;
|
|
|
|
m() {
|
|
for (#field in []) ;
|
|
}
|
|
}
|