blob: 908a1370f62415556e5376061fe10d0e55be19a1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
function foundit(items, n) {
for (var i = 0; i < 10; i++)
arguments[2](items, this);
}
function dostuff() {
print(this);
}
foundit('crab', 'crab', dostuff);
/* Don't crash or assert */
|