test262/test/language/statements/class/fields-derived-cls-indirect...

37 lines
1.2 KiB
JavaScript
Raw Normal View History

2017-10-21 01:27:59 +02:00
// This file was procedurally generated from the following sources:
2018-09-05 22:12:46 +02:00
// - src/class-elements/eval-err-contains-supercall-1.case
// - src/class-elements/initializer-eval-super-call/cls-decl-fields-indirect-eval.template
2017-10-21 01:27:59 +02:00
/*---
2017-11-01 15:54:11 +01:00
description: error if `super()['x']` in StatementList of eval (indirect eval)
2017-10-21 01:27:59 +02:00
esid: sec-performeval-rules-in-initializer
2017-11-28 18:49:12 +01:00
features: [class, class-fields-public]
2017-10-21 01:27:59 +02:00
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.
2018-08-10 17:52:50 +02:00
ScriptBody : StatementList
2017-10-21 01:27:59 +02:00
It is a Syntax Error if StatementList Contains SuperCall.
---*/
var executed = false;
2018-08-01 20:20:57 +02:00
class A {}
2017-11-01 15:54:11 +01:00
class C extends A {
2018-08-20 23:12:33 +02:00
x = (0, eval)('executed = true; super()["x"];');
2017-10-21 01:27:59 +02:00
}
assert.throws(SyntaxError, function() {
new C();
});
2017-11-01 15:54:11 +01:00
assert.sameValue(executed, false);