mirror of
				https://github.com/tc39/test262.git
				synced 2025-11-03 21:24:30 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			43 lines
		
	
	
		
			990 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			43 lines
		
	
	
		
			990 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
// This file was procedurally generated from the following sources:
 | 
						|
// - src/identifier-names/debugger-escaped.case
 | 
						|
// - src/identifier-names/default/obj-method-definition.template
 | 
						|
/*---
 | 
						|
description: debugger is a valid identifier name, using escape (MethodDefinition)
 | 
						|
esid: prod-PropertyDefinition
 | 
						|
flags: [generated]
 | 
						|
info: |
 | 
						|
    ObjectLiteral :
 | 
						|
      { PropertyDefinitionList }
 | 
						|
      { PropertyDefinitionList , }
 | 
						|
 | 
						|
    PropertyDefinitionList:
 | 
						|
      PropertyDefinition
 | 
						|
      PropertyDefinitionList , PropertyDefinition
 | 
						|
 | 
						|
    PropertyDefinition:
 | 
						|
      MethodDefinition
 | 
						|
      ...
 | 
						|
 | 
						|
    MethodDefinition:
 | 
						|
      PropertyName ( UniqueFormalParameters ){ FunctionBody }
 | 
						|
 | 
						|
    PropertyName:
 | 
						|
      LiteralPropertyName
 | 
						|
      ...
 | 
						|
 | 
						|
    LiteralPropertyName:
 | 
						|
      IdentifierName
 | 
						|
      ...
 | 
						|
 | 
						|
    Reserved Words
 | 
						|
 | 
						|
    A reserved word is an IdentifierName that cannot be used as an Identifier.
 | 
						|
---*/
 | 
						|
 | 
						|
 | 
						|
var obj = {
 | 
						|
  \u0064ebugger() { return 42; }
 | 
						|
};
 | 
						|
 | 
						|
assert.sameValue(obj['debugger'](), 42, 'property exists');
 |