(&self)
| 193 | } |
| 194 | |
| 195 | pub fn is_static_method(&self) -> bool { |
| 196 | matches!(self, Self::Method { is_static, .. } if *is_static) |
| 197 | } |
| 198 | |
| 199 | pub fn is_constructor(&self) -> bool { |
| 200 | matches!(self, Self::Constructor) |
no outgoing calls
no test coverage detected