| 69 | /// A local value. |
| 70 | #[derive(Debug, Eq, PartialEq, Copy, Clone)] |
| 71 | pub struct Local { |
| 72 | /// The index of the local. |
| 73 | pub index: u32, |
| 74 | /// The type of the local. |
| 75 | pub ty: WasmValType, |
| 76 | } |
| 77 | |
| 78 | /// A memory value. |
| 79 | #[derive(Debug, Eq, PartialEq, Copy, Clone)] |
no outgoing calls
no test coverage detected