summaryrefslogtreecommitdiff
path: root/test/binaryen.js/kitchen-sink.js.txt
diff options
context:
space:
mode:
Diffstat (limited to 'test/binaryen.js/kitchen-sink.js.txt')
-rw-r--r--test/binaryen.js/kitchen-sink.js.txt20
1 files changed, 20 insertions, 0 deletions
diff --git a/test/binaryen.js/kitchen-sink.js.txt b/test/binaryen.js/kitchen-sink.js.txt
index 87a6bc97c..ea2ff9d0c 100644
--- a/test/binaryen.js/kitchen-sink.js.txt
+++ b/test/binaryen.js/kitchen-sink.js.txt
@@ -9699,3 +9699,23 @@ module loaded from text form:
)
sizeof Literal: 24
+(module
+ (type $v (func))
+ (memory $0 1 256)
+ (data (i32.const 10) "hello, world")
+ (data (global.get $a-global) "segment data 2")
+ (global $a-global i32 (i32.const 125))
+ (export "export0" (func $fn0))
+ (export "export1" (func $fn1))
+ (export "export2" (func $fn2))
+ (export "mem" (memory $0))
+ (func $fn0 (; 0 ;) (type $v)
+ (nop)
+ )
+ (func $fn1 (; 1 ;) (type $v)
+ (nop)
+ )
+ (func $fn2 (; 2 ;) (type $v)
+ (nop)
+ )
+)