bug-1509420.js (265B)
1 // bindtoAsyncStack shouldn't choke on CCWs of functions. 2 3 var g = newGlobal(); 4 g.evaluate("function h() {}"); 5 bindToAsyncStack(g.h, { stack: saveStack() })(); 6 7 bindToAsyncStack(new Proxy(() => {}, { apply: () => {} }), 8 { stack: saveStack() }) 9 ();