| OLD | NEW | 
|---|
| 1 // Copyright 2015 the V8 project authors. All rights reserved. | 1 // Copyright 2015 the V8 project authors. All rights reserved. | 
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be | 
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. | 
| 4 | 4 | 
| 5 Object.defineProperty(Number.prototype, "0", | 5 Object.defineProperty(Number.prototype, "0", | 
| 6     { set: function(v) { set = v; }}); | 6     { set: function(v) { set = v; }}); | 
| 7 Object.defineProperty(String.prototype, "0", | 7 Object.defineProperty(String.prototype, "0", | 
| 8     { set: function(v) { set = v; }}); | 8     { set: function(v) { set = v; }}); | 
| 9 Object.defineProperty(String.prototype, "3", | 9 Object.defineProperty(String.prototype, "3", | 
| 10     { set: function(v) { set = v; }}); | 10     { set: function(v) { set = v; }}); | 
| (...skipping 23 matching lines...) Expand all  Loading... | 
| 34   "use strict"; | 34   "use strict"; | 
| 35   var sym = Symbol('66'); | 35   var sym = Symbol('66'); | 
| 36   sym['a' + 'b'] = 0; | 36   sym['a' + 'b'] = 0; | 
| 37 }); | 37 }); | 
| 38 | 38 | 
| 39 assertThrows(function() { | 39 assertThrows(function() { | 
| 40   "use strict"; | 40   "use strict"; | 
| 41   var sym = Symbol('66'); | 41   var sym = Symbol('66'); | 
| 42   sym[62] = 0; | 42   sym[62] = 0; | 
| 43 }); | 43 }); | 
|  | 44 | 
|  | 45 assertThrows(function() { | 
|  | 46   "use strict"; | 
|  | 47   var o = "bla"; | 
|  | 48   o["0"] = 1; | 
|  | 49 }); | 
| OLD | NEW | 
|---|