| 198 | |
| 199 | #[derive(Default)] |
| 200 | struct ConstraintGraph<'tcx> { |
| 201 | graph: Graph<ConstraintNode<'tcx>, ConstraintEdge, Directed>, |
| 202 | node_map: FxHashMap<ConstraintNode<'tcx>, NodeIndex>, |
| 203 | } |
| 204 | |
| 205 | impl<'tcx> ConstraintGraph<'tcx> { |
| 206 | fn get_or_insert_node(&mut self, node: ConstraintNode<'tcx>) -> NodeIndex { |
nothing calls this directly
no outgoing calls
no test coverage detected