ladybird/Userland/Libraries/LibWasm
Ali Mohammad Pur 50cb80649f LibWasm: Implement parsing all remaining instructions
With this, we can parse a module at least as simple as the following C
code would generate:
```c
int add(int x, int y) {
    if (x > y)
        return x + y;
    return y - x; // Haha goteeem
}
```
2021-05-08 22:14:39 +02:00
..
Parser LibWasm: Implement parsing all remaining instructions 2021-05-08 22:14:39 +02:00
CMakeLists.txt LibWasm: Start implementing a basic WebAssembly binary format parser 2021-05-08 22:14:39 +02:00
Constants.h LibWasm: Start implementing a basic WebAssembly binary format parser 2021-05-08 22:14:39 +02:00
Opcode.h LibWasm: Implement parsing all remaining instructions 2021-05-08 22:14:39 +02:00
Types.h LibWasm: Implement parsing all remaining instructions 2021-05-08 22:14:39 +02:00