Guy Bedford
Guy Bedford
> This might be a general theme for platforms, so let me know. Yes, as the platform we control the toolchain for the most part, and use a wasm pack...
> However, I should note that while compilation will work because you have your custom toolchain, users will still see errors in rust-analyzer. They would need to add some configuration...
@parzivale the problem with that approach is that web-sys and js-sys use `JsValue` so they'd need to then also have a feature / config that switches over to this new...
Hmm, perhaps `imports` here could apply equally to JS module workers somehow? ```js new Worker('prog.js', { "type": "module", "imports": { "memory": memory } }); ``` @nicolo-ribaudo already worked on a...
I guess it could be the same pattern as the WebAssembly instantiation API here in being double keyed by the module specifier and module export name: ```js new Worker('prog.js', {...
This is something supported via [workerData](https://nodejs.org/docs/latest/api/worker_threads.html#workerworkerdata) for Node.js worker threads, which then becomes available as an import. So the discussion was around if a similar special import could be used...
I've posted an upstream HTML issue for an initData worker initialization in https://github.com/whatwg/html/issues/11749. This is slightly different to the concept discussed here around import map init data. If there is...
It seems proposal-import-phase does the same thing. I did actually try to implement that here first, but was having trouble implementing a field that could be `FixedString | null` on...
@lukastaegert just checking in here if a review on this will be possible further?
Thank you, just wanted to check if it would be possible. Enjoy your break there.