summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/basic/bug592927.js
blob: 69f0bd237e4672fcd466c05d44f302db587601e6 (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
// vim: set ts=8 sts=4 et sw=4 tw=99:
function f(x, y) {
    x(f);
    assertEq(y, "hello");
}

function g(x) {
    assertEq(x.arguments[1], "hello");
    x.arguments[1] = "bye";
    assertEq(x.arguments[1], "hello");
}

function f2(x, y) {
    arguments;
    x(f2);
    assertEq(y, "hello");
}

function g2(x) {
    assertEq(x.arguments[1], "hello");
    x.arguments[1] = "bye";
    assertEq(x.arguments[1], "hello");
}

f(g, "hello");
f2(g2, "hello");