summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/basic/bug618350.js
blob: 61e72d0a0e2e8d6c04f7b6fa6e8aef019cea2675 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
var global = 0;

Object.defineProperty(Object.prototype, 0, {set: function() { global++; }});

for (var x = 0; x < 20; ++x)
  [1,2];
assertEq(global, 0);

Object.defineProperty(Object.prototype, 1, {set: function() { global++; }});

for (var x = 0; x < 20; ++x)
  [1,2];
assertEq(global, 0);

Object.defineProperty(Object.prototype, "b", {set: function() { global++; }});

for (var x = 0; x < 20; ++x) {
  var s = { a:0, b:1, 0: 2, 1: 3 };
}
assertEq(global, 0);

assertEq([42][0], 42);
assertEq([42].length, 1);