summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/ion/bug1331058.js
blob: ffb8f29196d55cd418bf93c4ab74a1e82134efdb (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
function foo(o, trigger) {
    bar = function() { return o.getY(); };
    if (trigger)
	assertEq(bar(), undefined);
    return 1;
}
function O(o, trigger) {
    this.a1 = 1;
    this.a2 = 2;
    this.a3 = 3;
    this.a4 = 4;
    this.x = foo(this, trigger);
}
O.prototype.getY = function() {
    return this.x;
}
function test() {
    with(this) {}; // No Ion.
    var arr = [];
    for (var i=0; i<100; i++)
	arr.push(new O({y: i}, false));

    for (var i=0; i<100; i++)
	bar();

    for (var i=0; i<300; i++)
	arr.push(new O({y: i}, true));
}
test();