mirror of
				https://github.com/tc39/test262.git
				synced 2025-11-03 21:24:30 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			17 lines
		
	
	
		
			502 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			17 lines
		
	
	
		
			502 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
// Copyright (C) 2023 Igalia, S.L. All rights reserved.
 | 
						|
// This code is governed by the BSD license found in the LICENSE file.
 | 
						|
 | 
						|
/*---
 | 
						|
esid: sec-innermoduleevaluation
 | 
						|
description: >
 | 
						|
  While an asynchronous module is waiting for a promise resolution,
 | 
						|
  sibling modules in the modules graph must be evaluated.
 | 
						|
flags: [module, async]
 | 
						|
features: [top-level-await]
 | 
						|
---*/
 | 
						|
 | 
						|
import "./async-module-tla_FIXTURE.js";
 | 
						|
import { check } from "./async-module-sync_FIXTURE.js";
 | 
						|
assert.sameValue(check, false);
 | 
						|
$DONE();
 |