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

Side by Side Diff: test/mjsunit/es6/indexed-integer-exotics.js

Issue 992913002: handle the special snowflakes that are Integer Indexed Exotic objects (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 5 years, 9 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/cctest/test-conversions.cc ('k') | test/mjsunit/harmony/typedarrays.js » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 // Copyright 2014 the V8 project authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 // Flags: --allow-natives-syntax
6
7 Object.prototype["10"] = "unreachable";
8 Object.prototype["7"] = "unreachable";
9 Object.prototype["-1"] = "unreachable";
10 Object.prototype["-0"] = "unreachable";
11 Object.prototype["4294967296"] = "unreachable";
12
13 var array = new Int32Array(10);
14
15 function check() {
16 for (var i = 0; i < 4; i++) {
17 assertEquals(undefined, array["-1"]);
18 assertEquals(undefined, array["-0"]);
19 assertEquals(undefined, array["10"]);
20 assertEquals(undefined, array["4294967296"]);
21 }
22 assertEquals("unreachable", array.__proto__["-1"]);
23 assertEquals("unreachable", array.__proto__["-0"]);
24 assertEquals("unreachable", array.__proto__["10"]);
25 assertEquals("unreachable", array.__proto__["4294967296"]);
26 }
27
28 check();
29
30 array["-1"] = "unreachable";
31 array["-0"] = "unreachable";
32 array["10"] = "unreachable";
33 array["4294967296"] = "unreachable";
34
35 check();
36
37 delete array["-0"];
38 delete array["-1"];
39 delete array["10"];
40 delete array["4294967296"];
41
42 assertEquals(undefined, Object.getOwnPropertyDescriptor(array, "-1"));
43 assertEquals(undefined, Object.getOwnPropertyDescriptor(array, "-0"));
44 assertEquals(undefined, Object.getOwnPropertyDescriptor(array, "10"));
45 assertEquals(undefined, Object.getOwnPropertyDescriptor(array, "4294967296"));
46 assertEquals(10, Object.keys(array).length);
47
48 check();
49
50 function f() { return array["-1"]; }
51
52 for (var i = 0; i < 3; i++) {
53 assertEquals(undefined, f());
54 }
55 %OptimizeFunctionOnNextCall(f);
56 assertEquals(undefined, f());
OLDNEW
« no previous file with comments | « test/cctest/test-conversions.cc ('k') | test/mjsunit/harmony/typedarrays.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698