| (module | |
| (type $0 (func (result i32))) | |
| (type $1 (func (param i32) (result i32))) | |
| (memory $0 1) | |
| (export "memory" (memory $0)) | |
| (export "grow" (func $0)) | |
| (export "current" (func $1)) | |
| (func $0 (; 0 ;) (type $1) (param $0 i32) (result i32) | |
| (memory.grow | |
| (local.get $0) | |
| ) | |
| ) | |
| (func $1 (; 1 ;) (type $0) (result i32) | |
| (memory.size) | |
| ) | |
| ) | |