mirror of
				https://github.com/tc39/test262.git
				synced 2025-10-27 01:33:59 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			14 lines
		
	
	
		
			299 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			299 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
| //@ runDefault("--softReservedZoneSize=16384", "--reservedZoneSize=0", "--useJIT=0", "--validateBytecode=1", "--maxPerThreadStackUsage=499712")
 | |
| 
 | |
| function f() {
 | |
|     try {
 | |
|         f();
 | |
|     } catch (e) {
 | |
|         try {
 | |
|             Map.prototype.forEach.call('', {});
 | |
|         } catch (e) {}
 | |
|     }
 | |
| }
 | |
| 
 | |
| f()
 |