blob: f1960c2dd98d5e610c6258dd988c1de8ffba0972 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
function dumpArgs6(i) {
if (i == 90)
return funapply6.arguments.length;
return [i];
}
function funapply6() {
return dumpArgs6.apply({}, arguments);
}
function test6(i) {
return funapply6(i,1,2,3);
}
test6(89)[0]
test6(0.2)
|