wasmi 0.36.0

WebAssembly interpreter
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
(module
  (func (;0;) (param i32 i32) (result i32 i32)
    (local $tmp i32)
    (local.get 0)
    (local.get 1)
    (local.set 1 (i32.const 10))
    (local.set 0 (i32.const 20))
    (i32.const 0)
    (i32.add)
    (local.set $tmp)
    (i32.const 0)
    (i32.add)
    (local.get $tmp)
  )
)