(&self)
| 42 | |
| 43 | impl<M: KernelMode> LocalDecl<M> { |
| 44 | pub fn ty(&self) -> &KExpr<M> { |
| 45 | match self { |
| 46 | LocalDecl::CDecl { ty, .. } | LocalDecl::LDecl { ty, .. } => ty, |
| 47 | } |
| 48 | } |
| 49 | |
| 50 | pub fn name(&self) -> &M::MField<Name> { |
| 51 | match self { |
no outgoing calls
no test coverage detected