mirror of
				https://github.com/tc39/test262.git
				synced 2025-11-03 21:24:30 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			42 lines
		
	
	
		
			851 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			42 lines
		
	
	
		
			851 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
// This file was procedurally generated from the following sources:
 | 
						|
// - src/computed-property-names/computed-property-name-from-expression-logical-and.case
 | 
						|
// - src/computed-property-names/evaluation/object-literal.template
 | 
						|
/*---
 | 
						|
description: Computed property name from logical and (ComputedPropertyName in ObjectLiteral)
 | 
						|
esid: prod-ComputedPropertyName
 | 
						|
features: [computed-property-names]
 | 
						|
flags: [generated]
 | 
						|
info: |
 | 
						|
    ObjectLiteral:
 | 
						|
      { PropertyDefinitionList }
 | 
						|
 | 
						|
    PropertyDefinitionList:
 | 
						|
      PropertyDefinition
 | 
						|
 | 
						|
    PropertyDefinition:
 | 
						|
      PropertyName: AssignmentExpression
 | 
						|
 | 
						|
    PropertyName:
 | 
						|
      ComputedPropertyName
 | 
						|
 | 
						|
    ComputedPropertyName:
 | 
						|
      [ AssignmentExpression ]
 | 
						|
---*/
 | 
						|
let x = 0;
 | 
						|
 | 
						|
 | 
						|
let o = {
 | 
						|
  [x && 1]: 2
 | 
						|
};
 | 
						|
 | 
						|
assert.sameValue(
 | 
						|
  o[x && 1],
 | 
						|
  2
 | 
						|
);
 | 
						|
assert.sameValue(
 | 
						|
  o[String(x && 1)],
 | 
						|
  2
 | 
						|
);
 | 
						|
 | 
						|
assert.sameValue(x, 0);
 |