mirror of
				https://github.com/tc39/test262.git
				synced 2025-10-31 19:53:50 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			11 lines
		
	
	
		
			187 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			11 lines
		
	
	
		
			187 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
| function thisA() {
 | |
|     return this.a
 | |
| }
 | |
| function thisAStrictWrapper() {
 | |
|     'use strict';
 | |
|     thisA.apply(this);
 | |
| }
 | |
| let x = false;
 | |
| for (let j=0; j<1e4; j++)
 | |
|     thisAStrictWrapper.call(x);
 |