mirror of
				https://github.com/tc39/test262.git
				synced 2025-11-03 21:24:30 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			22 lines
		
	
	
		
			596 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			22 lines
		
	
	
		
			596 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
// Copyright (C) 2020 Rick Waldron. 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 assignment
 | 
						|
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.
 | 
						|
 | 
						|
negative:
 | 
						|
  phase: parse
 | 
						|
  type: SyntaxError
 | 
						|
---*/
 | 
						|
 | 
						|
$DONOTEVALUATE();
 | 
						|
 | 
						|
var a, b = 2;
 | 
						|
(a = b) = 1;
 |