improved error reporting for UnwrapThrowExt for Result#4035
Merged
daxpedda merged 2 commits intowasm-bindgen:mainfrom Aug 1, 2024
Merged
improved error reporting for UnwrapThrowExt for Result#4035daxpedda merged 2 commits intowasm-bindgen:mainfrom
daxpedda merged 2 commits intowasm-bindgen:mainfrom
Conversation
Member
|
I will add a changelog entry. |
Liamolucko
reviewed
Aug 3, 2024
Comment on lines
+1386
to
+1389
| if cfg!(all( | ||
| target_arch = "wasm32", | ||
| not(any(target_os = "emscripten", target_os = "wasi")) | ||
| )) { |
Contributor
There was a problem hiding this comment.
This needs to be gated behind cfg(debug_assertions), the same as the default unwrap_throw implementation; see #2995 (review).
(The cfg(feature = "std") might not be needed anymore after #4005.)
This was referenced Aug 3, 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 join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Since
Result<T, E: fmt::Debug>has access toE: fmt::Debug, this PR modifies the default implementation ofUnwrapThrowExt::unwrap_throw()to include this extra information. This is my first PR, and I'm open to criticism