summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/language/expressions/in/private-field-invalid-identifier-simple.js
blob: db3365eea960f264696ad8c5ce9c76238c22bede (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// |reftest| error:SyntaxError
// Copyright 2021 the V8 project authors.  All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.

/*---
description: Invalid private identifier - simple case
info: |
  12.10.5 Static Semantics: AllPrivateIdentifiersValid

  AllPrivateIdentifiersValid is an abstract operation which takes names as an argument.

  RelationalExpression:PrivateIdentifierinShiftExpression

  1. If StringValue of PrivateIdentifier is in names, return true.
  2. Return false.

esid: sec-relational-operators-runtime-semantics-evaluation
negative:
  phase: parse
  type: SyntaxError
features: [class-fields-private, class-fields-private-in]
---*/

$DONOTEVALUATE();

#name in {};