(&self)
| 54 | } |
| 55 | |
| 56 | pub fn type_var(&self) -> Option<&TypeVar> { |
| 57 | match &self.kind.fields { |
| 58 | OperandKindFields::TypeVar(typevar) => Some(typevar), |
| 59 | _ => None, |
| 60 | } |
| 61 | } |
| 62 | |
| 63 | pub fn is_varargs(&self) -> bool { |
| 64 | matches!(self.kind.fields, OperandKindFields::VariableArgs) |
no outgoing calls
no test coverage detected