mirror of
				https://github.com/tc39/test262.git
				synced 2025-10-30 11:13:51 +01:00 
			
		
		
		
	These tests specifically concern error produced from the global scope, precluding the use of the `assert.throws` helper function.
		
			
				
	
	
		
			15 lines
		
	
	
		
			488 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
		
			488 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.
 | |
| /*---
 | |
| description: Modules dependencies are resolved in source text order
 | |
| esid: sec-moduledeclarationinstantiation
 | |
| negative:
 | |
|   phase: early
 | |
|   type: ReferenceError
 | |
| flags: [module]
 | |
| ---*/
 | |
| 
 | |
| import './instn-resolve-order-src-valid_FIXTURE.js';
 | |
| import './instn-resolve-order-src-reference_FIXTURE.js';
 | |
| import './instn-resolve-order-src-syntax_FIXTURE.js';
 |