Retain wrap state in parenthesized expressions; Void statements fwiw

This commit is contained in:
dcodeIO
2018-03-04 18:52:12 +01:00
parent 00c4f6fa52
commit d81ce5f907
10 changed files with 166 additions and 95 deletions

View File

@ -0,0 +1,15 @@
(module
(type $i (func (result i32)))
(type $v (func))
(memory $0 1)
(export "memory" (memory $0))
(start $start)
(func $void/anInt (; 0 ;) (type $i) (result i32)
(i32.const 2)
)
(func $start (; 1 ;) (type $v)
(drop
(call $void/anInt)
)
)
)