mirror of
https://github.com/fluencelabs/assemblyscript
synced 2025-04-25 23:12:19 +00:00
21 lines
588 B
Plaintext
21 lines
588 B
Plaintext
(module
|
|
(type $v (func))
|
|
(memory $0 0)
|
|
(export "memory" (memory $0))
|
|
(export "foo" (func $inlining-recursive/foo))
|
|
(export "bar" (func $inlining-recursive/bar))
|
|
(export "baz" (func $inlining-recursive/baz))
|
|
(func $inlining-recursive/foo (; 0 ;) (; has Stack IR ;) (type $v)
|
|
(call $inlining-recursive/foo)
|
|
)
|
|
(func $inlining-recursive/baz (; 1 ;) (; has Stack IR ;) (type $v)
|
|
(call $inlining-recursive/bar)
|
|
)
|
|
(func $inlining-recursive/bar (; 2 ;) (; has Stack IR ;) (type $v)
|
|
(call $inlining-recursive/baz)
|
|
)
|
|
(func $null (; 3 ;) (; has Stack IR ;) (type $v)
|
|
(nop)
|
|
)
|
|
)
|