You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In the README for this proposal, both before and after #13, Wasm exports are initialized as undefined, from the beginning of the evaluation phase, before the evaluation of the particular module runs. ES2015 introduces the "temporal dead zone", a mechanism where undefined things can trigger a ReferenceError rather than mysteriously show up as undefined. Would it make sense to use that here?
The text was updated successfully, but these errors were encountered:
- Initialize Wasm exports in TDZ; closesWebAssembly#18
- Document motivation for no circular modules and circular imports
of functions as a follow-on; closesWebAssembly#17
- Avoid use of the term "live binding"; closesWebAssembly#19
- Permit imports of Numbers as constant globals; closesWebAssembly#16
In the README for this proposal, both before and after #13, Wasm exports are initialized as undefined, from the beginning of the evaluation phase, before the evaluation of the particular module runs. ES2015 introduces the "temporal dead zone", a mechanism where undefined things can trigger a ReferenceError rather than mysteriously show up as undefined. Would it make sense to use that here?
The text was updated successfully, but these errors were encountered: