Get a slice of the context arguments.
(&self)
| 1298 | |
| 1299 | /// Get a slice of the context arguments. |
| 1300 | pub fn as_slice(&self) -> &[VMContextLoc] { |
| 1301 | match self { |
| 1302 | Self::VMContext(a) => a.as_slice(), |
| 1303 | Self::CalleeAndCallerVMContext(a) => a.as_slice(), |
| 1304 | } |
| 1305 | } |
| 1306 | } |
| 1307 | |
| 1308 | #[derive(Copy, Clone, Debug)] |
no outgoing calls
no test coverage detected