(&self)
| 1259 | |
| 1260 | #[inline] |
| 1261 | pub fn as_func(&self) -> Option<&WasmFuncType> { |
| 1262 | match self { |
| 1263 | Self::Func(f) => Some(f), |
| 1264 | _ => None, |
| 1265 | } |
| 1266 | } |
| 1267 | |
| 1268 | #[inline] |
| 1269 | pub fn unwrap_func(&self) -> &WasmFuncType { |
no outgoing calls
no test coverage detected