summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/arguments/apply-args-obj-02.js
blob: f619309818779d4ac6ec6e3ef27b50fdba8dc78c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
function foo() {
    arguments[0] = 3;
    return bar.apply({}, arguments);
}

function bar(x,y) {
    return x + y;
}

with ({}) {}

var sum = 0;
for (var i = 0; i < 100; i++) {
    sum += foo(1,2);
}
assertEq(sum, 500);