Use Binaryen's function signature naming scheme (#522)

This commit is contained in:
Daniel Wirtz
2019-03-01 00:01:23 +01:00
committed by GitHub
parent 7184db6dde
commit 4e1bba3a24
198 changed files with 3930 additions and 3962 deletions

View File

@ -1,5 +1,5 @@
(module
(type $_ (func))
(type $FUNCSIG$v (func))
(import "foo" "var" (global $external/var_ i32))
(import "external" "foo" (func $external/foo))
(import "external" "foo.bar" (func $external/foo.bar))
@ -15,7 +15,7 @@
(export "two" (func $external/two))
(export "three" (func $external/three))
(export "var_" (global $external/var_))
(func $null (; 4 ;) (type $_)
(func $null (; 4 ;) (type $FUNCSIG$v)
nop
)
)