mirror of
https://github.com/RGBCube/serenity
synced 2025-07-26 07:27:45 +00:00
LibWasm: Implement parsing of the DataCount section
With this, the parser should technically be able to parse all wasm modules. Any parse failure on correct modules should henceforth be labelled a bug :^)
This commit is contained in:
parent
bd8dac111c
commit
6e891822c5
3 changed files with 22 additions and 3 deletions
|
@ -783,4 +783,6 @@ HashMap<Wasm::OpCode, String> Wasm::Names::instruction_names {
|
|||
{ Instructions::table_grow, "table.grow" },
|
||||
{ Instructions::table_size, "table.size" },
|
||||
{ Instructions::table_fill, "table.fill" },
|
||||
{ Instructions::structured_else, "synthetic:else" },
|
||||
{ Instructions::structured_end, "synthetic:end" },
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue