This repository was archived by the owner on Apr 25, 2025. It is now read-only.
[js-api] Throw consistent exns in "read the imports"#523
Merged
rossberg merged 4 commits intoWebAssembly:mainfrom Feb 16, 2024
Merged
[js-api] Throw consistent exns in "read the imports"#523rossberg merged 4 commits intoWebAssembly:mainfrom
rossberg merged 4 commits intoWebAssembly:mainfrom
Conversation
Instead of allowing ToWebAssemblyValue to throw a TypeError, explicitly catch any exceptions and throw a WebAssembly.LinkError.
Instead of allowing ToWebAssemblyValue to throw a TypeError, explicitly catch any exceptions and throw a WebAssembly.LinkError.
rossberg
approved these changes
Feb 15, 2024
document/js-api/index.bs
Outdated
| 1. If |valtype| is [=v128=], | ||
| 1. Throw a {{LinkError}} exception. | ||
| 1. Let |value| be [=ToWebAssemblyValue=](|v|, |valtype|). | ||
| 1. Let |value| be [=ToWebAssemblyValue=](|v|, |valtype|). If this operation throws an exception, catch it, and throw a {{LinkError}} exception. |
Member
There was a problem hiding this comment.
I wonder if we should be specific to TypeError here. If there is any chance that TWAV could throw another exception (now or in the future), should that also become a LinkError? (Probably not.)
Contributor
Author
There was a problem hiding this comment.
I think it could make sense to be specific to TypeError, so I pushed that change. I think in practice it shouldn't be possible for TWAV to throw other exceptions at this particular call site currently.
For example, TWAV can throw a SyntaxError if BigInt conversion fails on a string but it should be guarded by the conditions here. But that property isn't immediately apparent either.
rossberg
approved these changes
Feb 16, 2024
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Fixes #521. Goes along with #498.