wasmi 0.38.0

WebAssembly interpreter
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
(module
    (func (result i32 i32 i32 i32)
        i32.const 1
        i32.const 0
        i32.const 1
        i32.const 0
    )
    (func (export "") (result i32 i32 i32 i32)
        (block (result i32 i32 i32 i32) ;; label = @1
            i32.const 0
            call 0
            br_table 0 1 1
        )
    )
)