mirror of
				https://github.com/tc39/test262.git
				synced 2025-11-03 21:24:30 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			19 lines
		
	
	
		
			636 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			19 lines
		
	
	
		
			636 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.
 | 
						|
 | 
						|
export { x as y } from './instn-iee-bndng-const.js';
 | 
						|
 | 
						|
// Taken together, the following two assertions demonstrate that there is no
 | 
						|
// entry in the environment record for ImportName:
 | 
						|
assert.throws(ReferenceError, function() {
 | 
						|
  x;
 | 
						|
});
 | 
						|
assert.sameValue(typeof x, 'undefined');
 | 
						|
 | 
						|
// Taken together, the following two assertions demonstrate that there is no
 | 
						|
// entry in the environment record for ExportName:
 | 
						|
assert.throws(ReferenceError, function() {
 | 
						|
  y;
 | 
						|
});
 | 
						|
assert.sameValue(typeof y, 'undefined');
 |