mirror of
https://github.com/denoland/deno.git
synced 2024-11-26 16:09:27 -05:00
ca64771257
This fixes #21434 for `BroadcastChannel` and `WebSocketStream`. `--unstable` still enable both, but granular unstable flags now also work: * `--unstable-net` now enables `WebSocketStream`. * `--unstable-broadcast-channel` now enables `BroadcastChannel`. * Additionally, there are now tests for all granular unstable flags. Since `unsafe-proto` already had tests, so I didn't add any for this one. It also introduces a map to keep track of granular unstable ids without having to sync multiple places.
19 lines
486 B
JavaScript
19 lines
486 B
JavaScript
const scope = import.meta.url.slice(-7) === "#worker" ? "worker" : "main";
|
|
|
|
new Worker(`data:application/javascript;base64,${btoa(`postMessage("ok");`)}`, {
|
|
type: "module",
|
|
deno: {
|
|
permissions: {
|
|
read: true,
|
|
},
|
|
},
|
|
}).onmessage = ({ data }) => {
|
|
console.log(scope, data);
|
|
|
|
if (scope === "main") {
|
|
const worker = new Worker(`${import.meta.url}#worker`, { type: "module" });
|
|
worker.onmessage = () => Deno.exit(0);
|
|
} else {
|
|
postMessage("done");
|
|
}
|
|
};
|