assemblyscript/tests/compiler/class-overloading.optimized.wat

24 lines
576 B
Plaintext
Raw Normal View History

(module
(type $iv (func (param i32)))
(type $v (func))
2018-09-13 23:10:49 +02:00
(type $FUNCSIG$v (func))
(memory $0 0)
(export "memory" (memory $0))
(export "test" (func $class-overloading/test))
(start $start)
2018-09-13 23:10:49 +02:00
(func $class-overloading/Foo#baz (; 0 ;) (; has Stack IR ;) (type $FUNCSIG$v)
(nop)
)
2018-08-02 18:23:02 +02:00
(func $class-overloading/test (; 1 ;) (; has Stack IR ;) (type $iv) (param $0 i32)
2018-09-13 23:10:49 +02:00
(call $class-overloading/Foo#baz)
)
2018-08-02 18:23:02 +02:00
(func $start (; 2 ;) (; has Stack IR ;) (type $v)
(call $class-overloading/test
(i32.const 0)
)
)
(func $null (; 3 ;) (; has Stack IR ;) (type $v)
(nop)
)
)