mirror of https://github.com/tc39/test262.git
38 lines
1.2 KiB
JavaScript
38 lines
1.2 KiB
JavaScript
|
// This file was procedurally generated from the following sources:
|
||
|
// - src/class-fields/eval-err-contains-supercall.case
|
||
|
// - src/class-fields/initializer-eval-super/cls-decl-fields-indirect-eval.template
|
||
|
/*---
|
||
|
description: error if `super()` in StatementList of eval (indirect eval)
|
||
|
esid: sec-performeval-rules-in-initializer
|
||
|
features: [class-fields]
|
||
|
flags: [generated]
|
||
|
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 Constructor Methods
|
||
|
These static semantics are applied by PerformEval when a direct eval call occurs outside of the constructor method of a ClassDeclaration or ClassExpression.
|
||
|
ScriptBody:StatementList
|
||
|
|
||
|
It is a Syntax Error if StatementList Contains SuperCall.
|
||
|
|
||
|
---*/
|
||
|
|
||
|
|
||
|
class A = {}
|
||
|
|
||
|
var executed = false;
|
||
|
class C extends A = {
|
||
|
x = (0, eval)('executed = true; super();';
|
||
|
}
|
||
|
|
||
|
assert.throws(SyntaxError, function() {
|
||
|
new C();
|
||
|
});
|
||
|
|
||
|
assert.sameValue(executed, true);
|