-
Notifications
You must be signed in to change notification settings - Fork 34
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Permit imports of Numbers as const globals? #16
Comments
- Initialize Wasm exports in TDZ; closes WebAssembly#18 - Document motivation for no circular modules and circular imports of functions as a follow-on; closes WebAssembly#17 - Avoid use of the term "live binding"; closes WebAssembly#19 - Permit imports of Numbers as constant globals; closes WebAssembly#16
Yes, It's a type error. What about: export let a = 1; Since the value will be copied it won't be mutable, I hope that it won't create confusion for users. |
@xtuc Yes, I can see how some people may expect a live binding rather than a snapshot. That's sort of a different, cross-cutting issue, though: functions are also proposed to have their semantics based on a snapshot, rather than a live binding. Also, if you replace one WebAssembly.Global object with another in your export, it's proposed that importing modules will still point to the original one. Overall, supporting live bindings by default would lead to significant additional complexity for WebAssembly semantics (what would it mean for Tables and Memory?!). |
The thing is that user won't keep a handle on a bare number export, as opposed to WebAssembly.{Table,Memory,Global}. If i'm not mistaken, export let a = 1;
a = 2; will snapshot a constant 2, but they won't be able to mutate it after. export let a = 1;
export function t() {
a = 2;
} This has no precedence in JS (that i'm aware of at least) and I think that it will confuse some users. Also the change will only be visible in JS. Live bindings "by default" could be archived using functions, which would return the up-to-date number. This has a noticable perf impact. |
Bindings are not live in these semantics for functions either. Do you think that will be confusing? |
- Initialize Wasm exports in TDZ; closes WebAssembly#18 - Document motivation for no circular modules and circular imports of functions as a follow-on; closes WebAssembly#17 - Avoid use of the term "live binding"; closes WebAssembly#19 - Permit imports of Numbers as constant globals; closes WebAssembly#16
If something is not a WebAssembly.Global object, and it's imported with a numeric mutable global type, it makes sense to call this an error, since there's no way a live binding could be of just numeric type. I like the idea of making this possible with a combination of host bindings and
anyref
.For const global numeric imports, though, if we take the strategy in #13, I don't see the problem with snapshotting them (after casting them to the right numeric type). Actually, if we did snapshot them, it'd be more consistent with how the JS API works, which implicitly creates const globals for Numbers which are passed into the API.
Thoughts?
The text was updated successfully, but these errors were encountered: