assemblyscript/tests/compiler/class-overloading.optimized.wat
2018-09-13 23:10:49 +02:00

21 lines
515 B
Plaintext

(module
(type $iv (func (param i32)))
(type $v (func))
(type $FUNCSIG$v (func))
(memory $0 0)
(export "memory" (memory $0))
(export "test" (func $class-overloading/test))
(start $start)
(func $class-overloading/Foo#baz (; 0 ;) (; has Stack IR ;) (type $FUNCSIG$v)
(nop)
)
(func $class-overloading/test (; 1 ;) (; has Stack IR ;) (type $iv) (param $0 i32)
(call $class-overloading/Foo#baz)
)
(func $start (; 2 ;) (; has Stack IR ;) (type $v)
(call $class-overloading/test
(i32.const 0)
)
)
)