indexed-integer-exotics.js 2.02 KB
Newer Older
1 2 3 4 5 6 7 8 9 10
// 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.

// Flags: --allow-natives-syntax

Object.prototype["10"] = "unreachable";
Object.prototype["7"] = "unreachable";
Object.prototype["-1"] = "unreachable";
Object.prototype["-0"] = "unreachable";
11
Object.prototype["4294967295"] = "unreachable";
12 13 14 15 16 17 18 19

var array = new Int32Array(10);

function check() {
  for (var i = 0; i < 4; i++) {
    assertEquals(undefined, array["-1"]);
    assertEquals(undefined, array["-0"]);
    assertEquals(undefined, array["10"]);
20
    assertEquals(undefined, array["4294967295"]);
21 22 23 24
  }
  assertEquals("unreachable", array.__proto__["-1"]);
  assertEquals("unreachable", array.__proto__["-0"]);
  assertEquals("unreachable", array.__proto__["10"]);
25
  assertEquals("unreachable", array.__proto__["4294967295"]);
26 27 28 29 30 31 32
}

check();

array["-1"] = "unreachable";
array["-0"] = "unreachable";
array["10"] = "unreachable";
33
array["4294967295"] = "unreachable";
34 35 36 37 38 39

check();

delete array["-0"];
delete array["-1"];
delete array["10"];
40
delete array["4294967295"];
41 42 43 44

assertEquals(undefined, Object.getOwnPropertyDescriptor(array, "-1"));
assertEquals(undefined, Object.getOwnPropertyDescriptor(array, "-0"));
assertEquals(undefined, Object.getOwnPropertyDescriptor(array, "10"));
45
assertEquals(undefined, Object.getOwnPropertyDescriptor(array, "4294967295"));
46 47 48 49 50 51
assertEquals(10, Object.keys(array).length);

check();

function f() { return array["-1"]; }

52
%PrepareFunctionForOptimization(f);
53 54 55 56 57
for (var i = 0; i < 3; i++) {
  assertEquals(undefined, f());
}
%OptimizeFunctionOnNextCall(f);
assertEquals(undefined, f());
58

59 60 61 62 63
assertThrows('Object.defineProperty(new Int32Array(100), -1, {value: 1})');
// -0 gets converted to the string "0", so use "-0" instead.
assertThrows('Object.defineProperty(new Int32Array(100), "-0", {value: 1})');
assertThrows('Object.defineProperty(new Int32Array(100), -10, {value: 1})');
assertThrows('Object.defineProperty(new Int32Array(), 4294967295, {value: 1})');
64 65

check();