mirror of
https://github.com/tc39/test262.git
synced 2025-05-20 14:50:28 +02:00
Apply fixes on recent class element tests
Ref https://github.com/tc39/test262/pull/1711#issuecomment-419973158
This commit is contained in:
parent
0dc97d6b82
commit
58f39fd36a
@ -12,4 +12,4 @@ template: syntax/invalid
|
|||||||
---*/
|
---*/
|
||||||
|
|
||||||
//- elements
|
//- elements
|
||||||
set constructor() {}
|
set constructor(_) {}
|
||||||
|
@ -17,7 +17,7 @@ template: syntax/valid
|
|||||||
|
|
||||||
//- elements
|
//- elements
|
||||||
static get constructor() {}
|
static get constructor() {}
|
||||||
static set constructor() {}
|
static set constructor(_) {}
|
||||||
constructor() {} // stacks with a valid constructor
|
constructor() {} // stacks with a valid constructor
|
||||||
//- teardown
|
//- teardown
|
||||||
assert(C.hasOwnProperty('constructor'));
|
assert(C.hasOwnProperty('constructor'));
|
||||||
|
@ -1,16 +0,0 @@
|
|||||||
// Copyright (C) 2018 Leo Balter. All rights reserved.
|
|
||||||
// This code is governed by the BSD license found in the LICENSE file.
|
|
||||||
|
|
||||||
/*---
|
|
||||||
desc: Static Methods can be named constructor
|
|
||||||
info: |
|
|
||||||
Class Definitions / Static Semantics: Early Errors
|
|
||||||
|
|
||||||
ClassElement : static MethodDefinition
|
|
||||||
It is a Syntax Error if PropName of MethodDefinition is "prototype"
|
|
||||||
template: syntax/invalid
|
|
||||||
---*/
|
|
||||||
|
|
||||||
//- elements
|
|
||||||
static constructor() {}
|
|
||||||
constructor() {} // stacks with a valid constructor
|
|
@ -12,4 +12,4 @@ template: syntax/invalid
|
|||||||
---*/
|
---*/
|
||||||
|
|
||||||
//- elements
|
//- elements
|
||||||
static set prototype() {}
|
static set prototype(_) {}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user