summaryrefslogtreecommitdiff
path: root/test/complexTextNames.wast.fromBinary
diff options
context:
space:
mode:
authorYury Delendik <ydelendik@mozilla.com>2018-08-31 09:26:23 -0500
committerAlon Zakai <alonzakai@gmail.com>2018-08-31 07:26:23 -0700
commit5c01f256df98dfe94b0c62323f94c1bcdcc3679d (patch)
tree40c799005900da6e886da21c364a1f567c57d296 /test/complexTextNames.wast.fromBinary
parente4d014f4293e38f179354af7b049133679b256d8 (diff)
downloadbinaryen-5c01f256df98dfe94b0c62323f94c1bcdcc3679d.tar.gz
binaryen-5c01f256df98dfe94b0c62323f94c1bcdcc3679d.tar.bz2
binaryen-5c01f256df98dfe94b0c62323f94c1bcdcc3679d.zip
Escape name section ids in binary format reading/writing to be WebAssembly spec compatible. (#1646)
Diffstat (limited to 'test/complexTextNames.wast.fromBinary')
-rw-r--r--test/complexTextNames.wast.fromBinary11
1 files changed, 11 insertions, 0 deletions
diff --git a/test/complexTextNames.wast.fromBinary b/test/complexTextNames.wast.fromBinary
new file mode 100644
index 000000000..e50a9134d
--- /dev/null
+++ b/test/complexTextNames.wast.fromBinary
@@ -0,0 +1,11 @@
+(module
+ (type $0 (func))
+ (export "$zoo (.bar)" (func $1))
+ (func $foo\20\28.bar\29 (; 0 ;) (type $0)
+ (nop)
+ )
+ (func $1 (; 1 ;) (type $0)
+ (call $foo\20\28.bar\29)
+ )
+)
+