mirror of
				https://github.com/tc39/test262.git
				synced 2025-11-04 05:33:50 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			29 lines
		
	
	
		
			855 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			29 lines
		
	
	
		
			855 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
// Copyright (C) 2014 André Bargull. All rights reserved.
 | 
						|
// This code is governed by the BSD license found in the LICENSE file.
 | 
						|
 | 
						|
/*---
 | 
						|
info: Assignment Operator calls PutValue(lref, rval)
 | 
						|
es5id: S11.13.1_A5_T4
 | 
						|
description: >
 | 
						|
    Evaluating LeftHandSideExpression lref returns Reference type; Reference
 | 
						|
    base value is an environment record and environment record kind is
 | 
						|
    object environment record. PutValue(lref, rval) uses the initially
 | 
						|
    created Reference even if the environment binding is no longer present.
 | 
						|
    No ReferenceError is thrown when assignment is in strict-mode code and the
 | 
						|
    original binding is no longer present.
 | 
						|
flags: [noStrict]
 | 
						|
---*/
 | 
						|
 | 
						|
var scope = {x: 1};
 | 
						|
 | 
						|
with (scope) {
 | 
						|
  (function() {
 | 
						|
    "use strict";
 | 
						|
    x = (delete scope.x, 2);
 | 
						|
  })();
 | 
						|
}
 | 
						|
 | 
						|
if (scope.x !== 2) {
 | 
						|
  $ERROR('#1: scope.x === 2. Actual: ' + (scope.x));
 | 
						|
}
 |