summaryrefslogtreecommitdiff
path: root/src/class-fields/eval-err-contains-superproperty-2.case
blob: 21a3db5445d7300f21a2d6deccfe9c6b49d89765 (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
27
28
// Copyright (C) 2017 Valerie Young. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.

/*---
desc: error if `super().x` in StatementList of eval
info: |
  Additional Early Error Rules for Eval Inside Initializer
  These static semantics are applied by PerformEval when a direct eval call occurs inside a class field initializer.
  ScriptBody : StatementList

    ...
    The remaining eval rules apply as outside a constructor, inside a method, and inside a function.

  Additional Early Error Rules for Eval Outside Methods
  These static semantics are applied by PerformEval when a direct eval call occurs outside of a MethodDefinition.
  ScriptBody:StatementList

    It is a Syntax Error if StatementList Contains SuperProperty.
features: [class-fields]
template: initializer-eval-super
---*/

//- initializer
super['x']
//- earlyerror
SyntaxError
//- executionerror
SyntaxError