summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/arguments/apply-args-obj-04.js
blob: 2a1e8b098e0ddc10b9be44a574e31b45574c6fe3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
var result;

function g(a, b) {
    with ({}) {}
    result = a + b;
}

function escape() { with({}) {} }

function f() {
    escape(arguments);
    for (var i = 0; i < 50; ++i) {
	g.apply(this, arguments);
    }
}

f(1, 2);
assertEq(result, 3);

f("");
assertEq(result, "undefined");