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
By default wasm2wat only checks whether input module is malformed (i.e. incorrect size of a section, unexpected magic number or reserved byte isn't equal to 0), but doesn't validate a module (i.e. if module does an addition of i32 and f32 it is well formed module but not valid).
I think it is good to validate an input by default.
Users can opt-out with Wasm2Wat struct if they don't want to validate module.
The text was updated successfully, but these errors were encountered:
By default wasm2wat only checks whether input module is malformed (i.e. incorrect size of a section, unexpected magic number or reserved byte isn't equal to 0), but doesn't validate a module (i.e. if module does an addition of
i32
andf32
it is well formed module but not valid).I think it is good to validate an input by default.
Users can opt-out with
Wasm2Wat
struct if they don't want to validate module.The text was updated successfully, but these errors were encountered: