mirror of
				https://github.com/tc39/test262.git
				synced 2025-11-04 05:33:50 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			16 lines
		
	
	
		
			488 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
		
			488 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
// This file was procedurally generated from the following sources:
 | 
						|
// - src/dynamic-import/nested-imports.case
 | 
						|
// - src/dynamic-import/syntax/valid/top-level.template
 | 
						|
/*---
 | 
						|
description: ImportCall is a CallExpression can be nested in other import calls (top level syntax)
 | 
						|
esid: sec-import-call-runtime-semantics-evaluation
 | 
						|
features: [dynamic-import]
 | 
						|
flags: [generated]
 | 
						|
info: |
 | 
						|
    ImportCall :
 | 
						|
        import( AssignmentExpression )
 | 
						|
 | 
						|
---*/
 | 
						|
 | 
						|
import(import(import('./empty_FIXTURE.js')));
 |