2017-10-17 23:51:13 +02:00
|
|
|
// This file was procedurally generated from the following sources:
|
2018-09-05 22:12:46 +02:00
|
|
|
// - src/class-elements/init-err-contains-super.case
|
|
|
|
// - src/class-elements/initializer-error/cls-expr-fields-arrow-fnc.template
|
2017-10-17 23:51:13 +02:00
|
|
|
/*---
|
|
|
|
description: Syntax error if `super()` used in class field (arrow function expression)
|
|
|
|
esid: sec-class-definitions-static-semantics-early-errors
|
2017-11-28 18:49:12 +01:00
|
|
|
features: [class, class-fields-public, arrow-function]
|
2017-10-17 23:51:13 +02:00
|
|
|
flags: [generated]
|
|
|
|
negative:
|
2017-12-03 06:06:42 +01:00
|
|
|
phase: parse
|
2017-10-17 23:51:13 +02:00
|
|
|
type: SyntaxError
|
|
|
|
info: |
|
|
|
|
Static Semantics: Early Errors
|
|
|
|
|
|
|
|
FieldDefinition:
|
|
|
|
PropertyNameInitializeropt
|
|
|
|
|
|
|
|
- It is a Syntax Error if Initializer is present and Initializer Contains SuperCall is true.
|
|
|
|
|
|
|
|
---*/
|
|
|
|
|
|
|
|
|
|
|
|
throw "Test262: This statement should not be evaluated.";
|
|
|
|
|
|
|
|
var C = class {
|
|
|
|
x = () => super();
|
|
|
|
}
|