Get the result types of this function type.
(&self)
| 434 | |
| 435 | /// Get the result types of this function type. |
| 436 | pub fn results(&self) -> &[WasmType] { |
| 437 | &self.data[self.param_count as usize..] |
| 438 | } |
| 439 | } |
| 440 | |
| 441 | #[derive(Default, Clone, Copy, PartialEq, Eq)] |
no outgoing calls