| (module | |
| (import "env" "memory" (memory $0 256)) | |
| (import "env" "table" (table 0 0 anyfunc)) | |
| (import "env" "memoryBase" (global $memoryBase i32)) | |
| (import "env" "tableBase" (global $tableBase i32)) | |
| (export "__growWasmMemory" (func $__growWasmMemory)) | |
| (func $__growWasmMemory (; 0 ;) (param $newSize i32) (result i32) | |
| (grow_memory | |
| (get_local $newSize) | |
| ) | |
| ) | |
| ) |