(kind: ExternalKind)
| 9675 | } |
| 9676 | |
| 9677 | fn external_kind_name(kind: ExternalKind) -> &'static str { |
| 9678 | match kind { |
| 9679 | ExternalKind::Func | ExternalKind::FuncExact => "func", |
| 9680 | ExternalKind::Table => "table", |
| 9681 | ExternalKind::Memory => "memory", |
| 9682 | ExternalKind::Global => "global", |
| 9683 | ExternalKind::Tag => "tag", |
| 9684 | } |
| 9685 | } |
| 9686 | |
| 9687 | fn wasm_memory_out(memory: wasmparser::MemoryType) -> WasmMemoryOut { |
| 9688 | WasmMemoryOut { |
no outgoing calls
no test coverage detected