mirror of
				https://github.com/tc39/test262.git
				synced 2025-10-31 03:34:08 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			27 lines
		
	
	
		
			442 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			27 lines
		
	
	
		
			442 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
| function set(arr, value) {
 | |
|     arr[0] = value;
 | |
| }
 | |
| 
 | |
| function getImmutableArrayOrSet(get) {
 | |
|     let arr = [1];
 | |
|     if (get)
 | |
|         return arr;
 | |
| 
 | |
|     set(arr, 42);
 | |
|     set({}, 1);
 | |
| }
 | |
| noInline(getImmutableArrayOrSet);
 | |
| 
 | |
| function test() {
 | |
|     getImmutableArrayOrSet(true);
 | |
| 
 | |
|     for (let i = 0; i < 10000; i++)
 | |
|         getImmutableArrayOrSet(false);
 | |
| 
 | |
|     let arr = getImmutableArrayOrSet(true);
 | |
|     if (arr[0] != 1)
 | |
|         throw "FAILED";
 | |
| }
 | |
| 
 | |
| test();
 |