blob: 43c9555980d7c482176734de075e3ad27676baad (
plain)
1
2
3
4
5
6
|
ignoreUnhandledRejections();
var g = newGlobal({ newCompartment: true });
var ccwCancelMethod = new g.Function("return 17;");
new ReadableStream({ cancel: ccwCancelMethod }).cancel("bye");
|