Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(133)

Side by Side Diff: test/mjsunit/primitive-keyed-access.js

Issue 1232823002: Fix keyed stores to strings convertible to indices (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 5 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « test/mjsunit/harmony/proxies.js ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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 });
OLDNEW
« no previous file with comments | « test/mjsunit/harmony/proxies.js ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698