(dst: &mut Vec<ValType>)
| 38 | } |
| 39 | |
| 40 | fn push(dst: &mut Vec<ValType>) { |
| 41 | dst.push(ValType::I32); // offset into memory |
| 42 | dst.push(ValType::I32); // length |
| 43 | } |
| 44 | |
| 45 | fn matches(mut tys: impl Iterator<Item = ValType>) -> anyhow::Result<()> { |
| 46 | // offset |
no outgoing calls
no test coverage detected