regress-crbug-416558.js 2.22 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 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 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 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 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115
// 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.

(function() {
  function store(x) { x[0] = 0; }
  store([]);
  var c = /x/;
  store(c);
  function get_hole() {
    var b = /x/;
    store(b);
    return b[1];
  }
  assertEquals(undefined, get_hole());
  assertEquals(undefined, get_hole());
})();

(function() {
  function store(x) { x[0] = 0; }
  store([]);
  var c = new Date();
  store(c);
  function get_hole() {
    var b = new Date();
    store(b);
    return b[1];
  }
  assertEquals(undefined, get_hole());
  assertEquals(undefined, get_hole());
})();

(function() {
  function store(x) { x[0] = 0; }
  store([]);
  var c = new Number(1);
  store(c);
  function get_hole() {
    var b = new Number(1);
    store(b);
    return b[1];
  }
  assertEquals(undefined, get_hole());
  assertEquals(undefined, get_hole());
})();

(function() {
  function store(x) { x[0] = 0; }
  store([]);
  var c = new Boolean();
  store(c);
  function get_hole() {
    var b = new Boolean();
    store(b);
    return b[1];
  }
  assertEquals(undefined, get_hole());
  assertEquals(undefined, get_hole());
})();

(function() {
  function store(x) { x[0] = 0; }
  store([]);
  var c = new Map();
  store(c);
  function get_hole() {
    var b = new Map();
    store(b);
    return b[1];
  }
  assertEquals(undefined, get_hole());
  assertEquals(undefined, get_hole());
})();

(function() {
  function store(x) { x[0] = 0; }
  store([]);
  var c = new Set();
  store(c);
  function get_hole() {
    var b = new Set();
    store(b);
    return b[1];
  }
  assertEquals(undefined, get_hole());
  assertEquals(undefined, get_hole());
})();

(function() {
  function store(x) { x[0] = 0; }
  store([]);
  var c = new WeakMap();
  store(c);
  function get_hole() {
    var b = new WeakMap();
    store(b);
    return b[1];
  }
  assertEquals(undefined, get_hole());
  assertEquals(undefined, get_hole());
})();

(function() {
  function store(x) { x[0] = 0; }
  store([]);
  var c = new WeakSet();
  store(c);
  function get_hole() {
    var b = new WeakSet();
    store(b);
    return b[1];
  }
  assertEquals(undefined, get_hole());
  assertEquals(undefined, get_hole());
})();