()
| 86 | |
| 87 | impl WasmRuntime { |
| 88 | const fn new() -> Self { |
| 89 | Self { |
| 90 | src: [0; SZ], |
| 91 | out: [0; SZ], |
| 92 | inp: [0; SZ], |
| 93 | inp_len: 0, |
| 94 | registry: Vec::new(), |
| 95 | manifests: Vec::new(), |
| 96 | handles: HandleTable::new(), |
| 97 | error_stash: ErrorStash::new(), |
| 98 | current_vm: None, |
| 99 | paused_run: None, |
| 100 | } |
| 101 | } |
| 102 | } |
| 103 | |
| 104 | static mut RUNTIME: WasmRuntime = WasmRuntime::new(); |
nothing calls this directly
no test coverage detected