Allow keywords in named import/export syntax (#107)

This commit is contained in:
Alan Pierce
2018-05-13 04:26:12 -07:00
committed by Daniel Wirtz
parent e415377cda
commit 5ab81a00a1
8 changed files with 119 additions and 35 deletions

View File

@ -0,0 +1,9 @@
(module
(type $i (func (result i32)))
(memory $0 1)
(export "default" (func $named-export-default/get3))
(export "memory" (memory $0))
(func $named-export-default/get3 (; 0 ;) (type $i) (result i32)
(i32.const 3)
)
)