| 45 | |
| 46 | /// The CallGraph node wrapping an Instance. |
| 47 | /// WithBody means the Instance owns body. |
| 48 | #[derive(Debug, PartialEq, Eq)] |
| 49 | pub enum CallGraphNode<'tcx> { |
| 50 | WithBody(Instance<'tcx>), |
| 51 | WithoutBody(Instance<'tcx>), |
| 52 | } |
| 53 |
nothing calls this directly
no outgoing calls
no test coverage detected