mirror of
				https://github.com/tc39/test262.git
				synced 2025-10-31 03:34:08 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			35 lines
		
	
	
		
			853 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			35 lines
		
	
	
		
			853 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-update-expressions-static-semantics-early-errors
 | |
| description: Applied to a "covered" YieldExpression
 | |
| info: |
 | |
|   UpdateExpression :
 | |
|     LeftHandSideExpression ++
 | |
|     LeftHandSideExpression --
 | |
| 
 | |
|   - It is an early Syntax Error if AssignmentTargetType of
 | |
|     LeftHandSideExpression is invalid or strict.
 | |
| 
 | |
|   12.15.3 Static Semantics: AssignmentTargetType
 | |
| 
 | |
|   AssignmentExpression:
 | |
|     YieldExpression
 | |
|     ArrowFunction
 | |
|     AsyncArrowFunction
 | |
|     LeftHandSideExpression = AssignmentExpression
 | |
|     LeftHandSideExpression AssignmentOperator AssignmentExpression
 | |
| 
 | |
|   1. Return invalid.
 | |
| features: [generators]
 | |
| negative:
 | |
|   phase: parse
 | |
|   type: SyntaxError
 | |
| ---*/
 | |
| 
 | |
| $DONOTEVALUATE();
 | |
| 
 | |
| function* g() {
 | |
|   (yield)--;
 | |
| }
 |