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-newtarget.case
|
|
|
|
// - src/class-elements/initializer-eval-newtarget/cls-decl-fields-eval.template
|
2017-10-21 01:27:59 +02:00
|
|
|
/*---
|
2017-11-01 15:54:11 +01:00
|
|
|
description: error if `new.target` in StatementList of eval (direct eval)
|
2017-10-21 01:27:59 +02:00
|
|
|
esid: sec-performeval-rules-in-initializer
|
2018-08-01 20:20:57 +02:00
|
|
|
features: [class, new.target, 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 Functions
|
|
|
|
These static semantics are applied by PerformEval when a direct eval call occurs outside of any function.
|
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 NewTarget.
|
|
|
|
|
|
|
|
---*/
|
|
|
|
|
|
|
|
|
|
|
|
var executed = false;
|
2017-11-01 15:54:11 +01:00
|
|
|
class C {
|
|
|
|
x = eval('executed = true; new.target;');
|
2017-10-21 01:27:59 +02:00
|
|
|
}
|
|
|
|
|
2017-11-01 15:54:11 +01:00
|
|
|
var c = new C();
|
2017-10-21 01:27:59 +02:00
|
|
|
|
|
|
|
assert.sameValue(executed, true);
|
2017-11-01 15:54:11 +01:00
|
|
|
assert.sameValue(c.x, undefined);
|