blob: 681714a4eac39906b38f960c3e0060286f96e731 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
(module
(type $none_=>_none (func))
(type $i32_=>_none (func (param i32)))
(type $i32_=>_i32 (func (param i32) (result i32)))
(memory $0 (shared 1 1))
(table $0 0 funcref)
(global $global$0 (mut f32) (f32.const 0))
(event $event$0 (attr 0) (param i32))
(func $foo (param $0 i32) (result i32)
(i32.const 0)
)
(func $test_function_block
(unreachable)
)
(func $test
(block $label$1
(unreachable)
)
)
)
|