mirror of https://github.com/tc39/test262.git
Generate tests
This commit is contained in:
parent
58f39fd36a
commit
5cdbf084a7
|
@ -21,5 +21,5 @@ info: |
|
|||
throw "Test262: This statement should not be evaluated.";
|
||||
|
||||
var C = class {
|
||||
set constructor() {}
|
||||
set constructor(_) {}
|
||||
};
|
||||
|
|
|
@ -1,26 +0,0 @@
|
|||
// This file was procedurally generated from the following sources:
|
||||
// - src/class-elements/grammar-static-private-ctor-meth-valid.case
|
||||
// - src/class-elements/syntax/invalid/cls-expr-elements-invalid-syntax.template
|
||||
/*---
|
||||
description: Static Methods can be named constructor (class expression)
|
||||
esid: prod-ClassElement
|
||||
features: [class]
|
||||
flags: [generated]
|
||||
negative:
|
||||
phase: parse
|
||||
type: SyntaxError
|
||||
info: |
|
||||
Class Definitions / Static Semantics: Early Errors
|
||||
|
||||
ClassElement : static MethodDefinition
|
||||
It is a Syntax Error if PropName of MethodDefinition is "prototype"
|
||||
|
||||
---*/
|
||||
|
||||
|
||||
throw "Test262: This statement should not be evaluated.";
|
||||
|
||||
var C = class {
|
||||
static constructor() {}
|
||||
constructor() {} // stacks with a valid constructor
|
||||
};
|
|
@ -21,5 +21,5 @@ info: |
|
|||
throw "Test262: This statement should not be evaluated.";
|
||||
|
||||
var C = class {
|
||||
static set prototype() {}
|
||||
static set prototype(_) {}
|
||||
};
|
||||
|
|
|
@ -21,7 +21,7 @@ info: |
|
|||
|
||||
var C = class {
|
||||
static get constructor() {}
|
||||
static set constructor() {}
|
||||
static set constructor(_) {}
|
||||
constructor() {} // stacks with a valid constructor
|
||||
};
|
||||
|
||||
|
|
|
@ -21,5 +21,5 @@ info: |
|
|||
throw "Test262: This statement should not be evaluated.";
|
||||
|
||||
class C {
|
||||
set constructor() {}
|
||||
set constructor(_) {}
|
||||
}
|
||||
|
|
|
@ -1,26 +0,0 @@
|
|||
// This file was procedurally generated from the following sources:
|
||||
// - src/class-elements/grammar-static-private-ctor-meth-valid.case
|
||||
// - src/class-elements/syntax/invalid/cls-decl-elements-invalid-syntax.template
|
||||
/*---
|
||||
description: Static Methods can be named constructor (class declaration)
|
||||
esid: prod-ClassElement
|
||||
features: [class]
|
||||
flags: [generated]
|
||||
negative:
|
||||
phase: parse
|
||||
type: SyntaxError
|
||||
info: |
|
||||
Class Definitions / Static Semantics: Early Errors
|
||||
|
||||
ClassElement : static MethodDefinition
|
||||
It is a Syntax Error if PropName of MethodDefinition is "prototype"
|
||||
|
||||
---*/
|
||||
|
||||
|
||||
throw "Test262: This statement should not be evaluated.";
|
||||
|
||||
class C {
|
||||
static constructor() {}
|
||||
constructor() {} // stacks with a valid constructor
|
||||
}
|
|
@ -21,5 +21,5 @@ info: |
|
|||
throw "Test262: This statement should not be evaluated.";
|
||||
|
||||
class C {
|
||||
static set prototype() {}
|
||||
static set prototype(_) {}
|
||||
}
|
||||
|
|
|
@ -21,7 +21,7 @@ info: |
|
|||
|
||||
class C {
|
||||
static get constructor() {}
|
||||
static set constructor() {}
|
||||
static set constructor(_) {}
|
||||
constructor() {} // stacks with a valid constructor
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue