array-methods-read-only-length.js 2.9 KB
Newer Older
1 2 3 4 5 6
// 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

7
function testAdd(mode) {
8 9 10 11
  var a = [];
  Object.defineProperty(a, "length", { writable : false});

  function check(f) {
12
    assertThrows(function() { f(a) }, TypeError);
13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37
    assertFalse(0 in a);
    assertEquals(0, a.length);
  }

  function push(a) {
    a.push(3);
  }

  if (mode == "fast properties") %ToFastProperties(a);

  check(push);
  check(push);
  check(push);
  %OptimizeFunctionOnNextCall(push);
  check(push);

  function unshift(a) {
    a.unshift(3);
  }

  check(unshift);
  check(unshift);
  check(unshift);
  %OptimizeFunctionOnNextCall(unshift);
  check(unshift);
38 39 40 41 42 43 44 45 46 47

  function splice(a) {
    a.splice(0, 0, 3);
  }

  check(splice);
  check(splice);
  check(splice);
  %OptimizeFunctionOnNextCall(splice);
  check(splice);
48 49
}

50 51 52 53
testAdd("fast properties");

testAdd("normalized");

54
function testRemove(a, mode) {
55 56 57 58 59 60 61 62
  Object.defineProperty(a, "length", { writable : false});

  function check(f) {
    assertThrows(function() { f(a) }, TypeError);
    assertEquals(3, a.length);
  }

  if (mode == "fast properties") %ToFastProperties(a);
63

64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93
  function pop(a) {
    a.pop();
  }

  check(pop);
  check(pop);
  check(pop);
  %OptimizeFunctionOnNextCall(pop);
  check(pop);

  function shift(a) {
    a.shift();
  }

  check(shift);
  check(shift);
  check(shift);
  %OptimizeFunctionOnNextCall(shift);
  check(shift);

  function splice(a) {
    a.splice(0, 1);
  }

  check(splice);
  check(splice);
  check(splice);
  %OptimizeFunctionOnNextCall(splice);
  check(splice);

94 95 96 97
  %ClearFunctionTypeFeedback(pop);
  %ClearFunctionTypeFeedback(shift);
  %ClearFunctionTypeFeedback(splice);
}
98

99 100 101 102 103 104 105 106 107 108
for (var i = 0; i < 3; i++) {
  var a = [1, 2, 3];
  if (i == 1) {
    a = [1, 2, 3.5];
  } else if (i == 2) {
    a = [1, 2, "string"];
  }
  testRemove(a, "fast properties");
  testRemove(a, "normalized");
}
109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163

var b = [];
Object.defineProperty(b.__proto__, "0", {
  set : function(v) {
    b.x = v;
    Object.defineProperty(b, "length", { writable : false });
  },
  get: function() {
    return b.x;
  }
});

b = [];
try {
  b.push(3, 4, 5);
} catch(e) { }
assertFalse(1 in b);
assertFalse(2 in b);
assertEquals(0, b.length);

b = [];
try {
  b.unshift(3, 4, 5);
} catch(e) { }
assertFalse(1 in b);
assertFalse(2 in b);
assertEquals(0, b.length);

b = [1, 2];
try {
  b.unshift(3, 4, 5);
} catch(e) { }
assertEquals(3, b[0]);
assertEquals(4, b[1]);
assertEquals(5, b[2]);
assertEquals(1, b[3]);
assertEquals(2, b[4]);
assertEquals(5, b.length);

b = [1, 2];

Object.defineProperty(b.__proto__, "4", {
  set : function(v) {
    b.z = v;
    Object.defineProperty(b, "length", { writable : false });
  },
  get: function() {
    return b.z;
  }
});

try {
  b.unshift(3, 4, 5);
} catch(e) { }

164 165 166
assertFalse(2 in b);
assertFalse(3 in b);
assertEquals(2, b.length);