(&self)
| 34 | // Indirect(Location), |
| 35 | } |
| 36 | |
| 37 | impl CallSiteLocation { |
| 38 | pub fn location(&self) -> Option<Location> { |
| 39 | match self { |
| 40 | Self::Direct(loc) | Self::ClosureDef(_, Some(loc)) => Some(*loc), |
| 41 | _ => None, |
| 42 | } |
| 43 | } |
| 44 | } |
no outgoing calls
no test coverage detected