blob: 5b8591be51178d5009a49ba8ad7b0e120370d386 [file] [edit]
// Copyright (C) 2017 Valerie Young. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
desc: super['x'] in StatementList of eval
info: |
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, class-fields-public]
template: initializer-eval-super-property
---*/
//- initializer
super['x']
//- arrow-body
() => super['x']