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
The parser should be able to parse all the section at once.
The function parse_sections should return a structure like
pub(crate)structSections{pubtypes:Vec<u8>,// Raw type section payloadpubfunctions:Vec<u8>,// Raw function section payloadpubexports:Vec<Export>,// Parsed exportspubfuncs:Vec<Func>,// Parsed function bodies// Other sections...}
This would mean we shouldn’t change its structure but instead work within this framework.
The text was updated successfully, but these errors were encountered:
parse_sections
should return a structure likeThe text was updated successfully, but these errors were encountered: