-
Notifications
You must be signed in to change notification settings - Fork 37

Description
Has there been any discussion of whether to trace bindings through wasm modules?
If star exports find the same name twice, they consider it ambiguous and throw.
But if multiple paths lead to the same place it's not ambiguous. ESM traces bindings to detect this and load successfully.
The proposal currently drops tracing at wasm nodes. This might be surprising for devs. It means there's different load time behavior for a wasm module. If you had a dual build gadget
(wasm with a JS fallback), intuitively it seems they should both work. But with reexports they don't. In a less capable environment, the JS version works. In a more capable environment, the wasm version throws an error.
export { widget } from './widget.mjs'
(func (export "widget") (import "./widget.mjs" "widget"))
Where a package reexports, this means a wasm build can't be used as a drop in replacement for the JS version.