Find all the callers that call target
(&self, target: InstanceId)
| 143 | self.graph.edge_weight(edge).cloned() |
| 144 | } |
| 145 | |
| 146 | /// Find all the callers that call target |
| 147 | pub fn callers(&self, target: InstanceId) -> Vec<InstanceId> { |
| 148 | self.graph.neighbors_directed(target, Incoming).collect() |
| 149 | } |
| 150 |
no outgoing calls
no test coverage detected