summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/jaeger/bug659439.js
blob: e83afebfd11d2239b30dd02598b1f8990d900c93 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
function bind(f) {
    return f.call.apply(f.bind, arguments);
};
function h(a, b) {
    a.x;
}
function g(a, b) {
    a.x = b;
    h(a);
}
function f() {
    for(var i=0; i<20; i++) {
        g.call(this, {}, bind(function(){}));
    }
}
f();