blob: 18349056c37750bb020cf2397a9e90073c0443e1 (
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
25
26
27
28
29
30
31
32
|
function test1() {
var o1 = {x: 1, y: 2, z: 3};
var o2 = Object.create(o1);
var o3 = Object.create(o2);
o2.x = 2; // Ensure teleporting is invalidated for o1.
for (var i = 0; i < 30; i++) {
assertEq(o3.y, i > 20 ? -1 : 2);
if (i === 20) {
// Add a (second) shadowing property to o2. The property access
// above must detect this properly.
o2.y = -1;
}
}
}
test1();
function test2() {
var o1 = {x: 1, y: 2, z: 3};
var o2 = Object.create(o1);
var o3 = Object.create(o2);
var o4 = Object.create(o3);
o2.x = 1;
o2.a = 2;
o3.a = 2;
for (var i = 0; i < 30; i++) {
assertEq(o4.y, i > 20 ? undefined : 2);
if (i === 20) {
o2.__proto__ = null;
}
}
}
test2();
|