mirror of
				https://github.com/tc39/test262.git
				synced 2025-10-31 03:34:08 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			31 lines
		
	
	
		
			751 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			31 lines
		
	
	
		
			751 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
| // Copyright (C) 2016 the V8 project authors. All rights reserved.
 | |
| // This code is governed by the BSD license found in the LICENSE file.
 | |
| /*---
 | |
| esid: sec-assignment-operators-static-semantics-early-errors
 | |
| description: Applied to a "covered" new.target
 | |
| info: |
 | |
|   AssignmentExpression : LeftHandSideExpression = AssignmentExpression
 | |
| 
 | |
|   - It is an early Syntax Error if LeftHandSideExpression is neither an
 | |
|     ObjectLiteral nor an ArrayLiteral and AssignmentTargetType of
 | |
|     LeftHandSideExpression is invalid or strict.
 | |
| 
 | |
|   12.3.1.6 Static Semantics: AssignmentTargetType
 | |
| 
 | |
|   NewTarget:
 | |
| 
 | |
|   new.target
 | |
| 
 | |
|   1. Return invalid.
 | |
| negative:
 | |
|   phase: parse
 | |
|   type: SyntaxError
 | |
| features: [new.target]
 | |
| ---*/
 | |
| 
 | |
| $DONOTEVALUATE();
 | |
| 
 | |
| function f() {
 | |
|   (new.target) = 1;
 | |
| }
 |