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
Right now the validator uses wasmparser::validator::ComponentState::validate_and_register_named_types to ensure that a given extern only refers to named types, but it only returns a bool instead of a Result. This makes debugging much more difficult as one cannot be sure what the actual issue is without using a debugger or patching in a local copy of wasmparser to add debug logs.
The text was updated successfully, but these errors were encountered:
Right now the validator uses
wasmparser::validator::ComponentState::validate_and_register_named_types
to ensure that a given extern only refers to named types, but it only returns abool
instead of aResult
. This makes debugging much more difficult as one cannot be sure what the actual issue is without using a debugger or patching in a local copy ofwasmparser
to add debug logs.The text was updated successfully, but these errors were encountered: