mirror of
				https://github.com/tc39/test262.git
				synced 2025-10-31 11:44:31 +01:00 
			
		
		
		
	sourceRevisionAtLastExport: 33f2fb0e53d135f0ee17cfccd9d993eb2a6f47de targetRevisionAtLastExport: 31340cbd9add103f586d501b0c3354b7b182abc0
		
			
				
	
	
		
			19 lines
		
	
	
		
			635 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			19 lines
		
	
	
		
			635 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
| // Copyright 2014 the V8 project authors. All rights reserved.
 | |
| // Use of this source code is governed by a BSD-style license that can be
 | |
| // found in the LICENSE file.
 | |
| 
 | |
| Object.defineProperty(Array.prototype, '0', {
 | |
|   get: function() { return false; },
 | |
| });
 | |
| var a = [1, 2, 3];
 | |
| assertEquals(a, a.slice());
 | |
| assertEquals([3], a.splice(2, 1));
 | |
| 
 | |
| a = [1, 2, 3];
 | |
| a[0xffff] = 4;
 | |
| // nulling the prototype lets us stay in the sparse case; otherwise the
 | |
| // getter on Array.prototype would force us into the non-sparse code.
 | |
| a.__proto__ = null;
 | |
| assertEquals(a, Array.prototype.slice.call(a));
 | |
| assertEquals([3], Array.prototype.splice.call(a, 2, 1));
 |