blob: 133b84f2f9a24d36dd53359583f774c604a5bea4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
function f() {}
var fn = f;
for (var i = 0; i < 100000; ++i) {
fn = fn.bind();
// Ensure we don't fallback to @@hasInstance from %FunctionPrototype%.
Object.defineProperty(fn, Symbol.hasInstance, {
value: undefined, writable: true, enumerable: true, writable: true
});
// Prevent generating overlong names of the form "bound bound bound [...] f".
Object.defineProperty(fn, "name", {
value: "", writable: true, enumerable: true, writable: true
});
}
assertThrowsInstanceOf(
() => ({}) instanceof fn,
Error,
"detect runaway recursion delegating instanceof to bound function target");
reportCompare(0, 0);
|