mirror of
				https://github.com/tc39/test262.git
				synced 2025-11-04 05:33:50 +01:00 
			
		
		
		
	These tests specifically concern error produced from the global scope, precluding the use of the `assert.throws` helper function.
		
			
				
	
	
		
			20 lines
		
	
	
		
			588 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			20 lines
		
	
	
		
			588 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: Requested modules that produce an early ReferenceError
 | 
						|
esid: sec-moduledeclarationinstantiation
 | 
						|
info: |
 | 
						|
    [...]
 | 
						|
    8. For each String required that is an element of
 | 
						|
       module.[[RequestedModules]] do,
 | 
						|
       [...]
 | 
						|
       b. Let requiredModule be ? HostResolveImportedModule(module, required).
 | 
						|
    [...]
 | 
						|
negative:
 | 
						|
  phase: early
 | 
						|
  type: ReferenceError
 | 
						|
flags: [module]
 | 
						|
---*/
 | 
						|
 | 
						|
import './instn-resolve-err-reference_FIXTURE.js';
 |