Skip to content
Snippets Groups Projects
Commit 58f39fd3 authored by Leo Balter's avatar Leo Balter
Browse files

Apply fixes on recent class element tests

parent 0dc97d6b
No related branches found
No related tags found
No related merge requests found
......@@ -12,4 +12,4 @@ template: syntax/invalid
---*/
//- elements
set constructor() {}
set constructor(_) {}
......@@ -17,7 +17,7 @@ template: syntax/valid
//- elements
static get constructor() {}
static set constructor() {}
static set constructor(_) {}
constructor() {} // stacks with a valid constructor
//- teardown
assert(C.hasOwnProperty('constructor'));
......
// 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
static set prototype() {}
static set prototype(_) {}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment