mirror of
				https://github.com/tc39/test262.git
				synced 2025-11-04 05:33:50 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			30 lines
		
	
	
		
			825 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			30 lines
		
	
	
		
			825 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
// Copyright (C) 2017 Valerie Young. All rights reserved.
 | 
						|
// This code is governed by the BSD license found in the LICENSE file.
 | 
						|
/*---
 | 
						|
description: class fields forbid PropName 'constructor' (early error -- PropName of IdentifierName is forbidden)
 | 
						|
esid: sec-class-definitions-static-semantics-early-errors
 | 
						|
features: [class, class-fields-public]
 | 
						|
negative:
 | 
						|
  phase: parse
 | 
						|
  type: SyntaxError
 | 
						|
info: |
 | 
						|
    Static Semantics: PropName
 | 
						|
    LiteralPropertyName : IdentifierName
 | 
						|
      Return StringValue of IdentifierName.
 | 
						|
 | 
						|
 | 
						|
    // This test file tests the following early error:
 | 
						|
    Static Semantics: Early Errors
 | 
						|
 | 
						|
      ClassElement : FieldDefinition;
 | 
						|
        It is a Syntax Error if PropName of FieldDefinition is "constructor".
 | 
						|
 | 
						|
---*/
 | 
						|
 | 
						|
 | 
						|
throw "Test262: This statement should not be evaluated.";
 | 
						|
 | 
						|
var C = class {
 | 
						|
  constructor;
 | 
						|
};
 |