blob: e5800971175493bf28b67564bc2193a0413362c1 (
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
28
29
30
31
32
33
34
35
|
// Verify that the generic call trampoline handles fun_call with
// non-object / non-callable `this` correctly
function foo(f) {
f.call({});
}
with ({}) {}
function f1() {}
function f2() {}
// Ion-compile the generic trampoline.
for (var i = 0; i < 1000; i++) {
foo(f1, {});
foo(f2, {});
}
function assertThrows(f) {
var caught = false;
try {
foo(f);
} catch {
caught = true;
}
assertEq(caught, true);
}
// Non-object callee
assertThrows(0);
assertThrows(undefined);
assertThrows("");
// Non-callable object callee
assertThrows({});
|