mirror of
				https://github.com/tc39/test262.git
				synced 2025-11-03 21:24:30 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			38 lines
		
	
	
		
			1002 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			38 lines
		
	
	
		
			1002 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
// This file was procedurally generated from the following sources:
 | 
						|
// - src/class-elements/err-delete-member-expression-privatename.case
 | 
						|
// - src/class-elements/delete-error/cls-expr-method-delete.template
 | 
						|
/*---
 | 
						|
description: It's a SyntaxError if delete operator is applied to MemberExpression.PrivateName (in method)
 | 
						|
esid: sec-class-definitions-static-semantics-early-errors
 | 
						|
features: [class-fields-private, class]
 | 
						|
flags: [generated, onlyStrict]
 | 
						|
negative:
 | 
						|
  phase: parse
 | 
						|
  type: SyntaxError
 | 
						|
info: |
 | 
						|
    Static Semantics: Early Errors
 | 
						|
 | 
						|
      UnaryExpression : delete UnaryExpression
 | 
						|
 | 
						|
      It is a Syntax Error if the UnaryExpression is contained in strict mode
 | 
						|
      code and the derived UnaryExpression is
 | 
						|
      PrimaryExpression : IdentifierReference ,
 | 
						|
      MemberExpression : MemberExpression.PrivateName , or
 | 
						|
      CallExpression : CallExpression.PrivateName .
 | 
						|
 | 
						|
---*/
 | 
						|
 | 
						|
 | 
						|
throw "Test262: This statement should not be evaluated.";
 | 
						|
 | 
						|
var C = class {
 | 
						|
  #x;
 | 
						|
 | 
						|
  x() {
 | 
						|
    
 | 
						|
    delete this.#x;
 | 
						|
  }
 | 
						|
 | 
						|
  
 | 
						|
}
 |