(memory: wasmparser::MemoryType)
| 9685 | } |
| 9686 | |
| 9687 | fn wasm_memory_out(memory: wasmparser::MemoryType) -> WasmMemoryOut { |
| 9688 | WasmMemoryOut { |
| 9689 | initial_pages: memory.initial, |
| 9690 | maximum_pages: memory.maximum, |
| 9691 | memory64: memory.memory64, |
| 9692 | shared: memory.shared, |
| 9693 | page_size_log2: memory.page_size_log2, |
| 9694 | } |
| 9695 | } |
| 9696 | |
| 9697 | fn host_target_triple() -> &'static str { |
| 9698 | #[cfg(all(target_os = "macos", target_arch = "aarch64"))] |
no outgoing calls
no test coverage detected