mirror of
				https://github.com/tc39/test262.git
				synced 2025-11-04 13:44:29 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			33 lines
		
	
	
		
			928 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			33 lines
		
	
	
		
			928 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
// This file was procedurally generated from the following sources:
 | 
						|
// - src/class-fields/static-propname-constructor.case
 | 
						|
// - src/class-fields/propname-error/cls-expr-computed-name.template
 | 
						|
/*---
 | 
						|
description: static class field forbid PropName 'constructor' (no early error -- PropName of ComputedPropertyName not forbidden value)
 | 
						|
esid: sec-class-definitions-static-semantics-early-errors
 | 
						|
features: [class-fields]
 | 
						|
flags: [generated]
 | 
						|
info: |
 | 
						|
    Static Semantics: PropName
 | 
						|
    ...
 | 
						|
    ComputedPropertyName : [ AssignmentExpression ]
 | 
						|
      Return empty.
 | 
						|
 | 
						|
    
 | 
						|
    // This test file tests the following early error:
 | 
						|
    Static Semantics: Early Errors
 | 
						|
 | 
						|
      ClassElement : staticFieldDefinition;
 | 
						|
        It is a Syntax Error if PropName of FieldDefinition is "prototype" or "constructor".
 | 
						|
 | 
						|
---*/
 | 
						|
 | 
						|
 | 
						|
var x = "constructor";
 | 
						|
var C = class {
 | 
						|
  static [x];
 | 
						|
}
 | 
						|
 | 
						|
var c = new C();
 | 
						|
 | 
						|
assert.sameValue(c.hasOwnProperty("constructor"), true);
 |