blob: 68df630dd2f9dfa19f2c3004e19e793409aa2737 (
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
|
function test1() {
function h(node) {
var x = 0.1;
for (var i=0; i<100; i++) {
x += node.parent;
}
return x;
}
function build(depth) {
if (depth > 10)
return {parent: 3.3};
return {__proto__: build(depth + 1)};
}
var tree = build(0);
assertEq(h(tree)|0, 330);
}
test1();
function test2() {
function Foo() {};
Foo.prototype.x = 3.3;
var o = new Foo();
for (var i=0; i<100; i++) {
assertEq(o.x, 3.3);
}
}
test2();
|