(&self)
| 293 | } |
| 294 | |
| 295 | fn nodes(&self) -> Vec<ConstraintNode<'tcx>> { |
| 296 | self.node_map.keys().cloned().collect::<_>() |
| 297 | } |
| 298 | |
| 299 | fn edges(&self) -> Vec<(ConstraintNode<'tcx>, ConstraintNode<'tcx>, ConstraintEdge)> { |
| 300 | let mut v = Vec::new(); |
no outgoing calls
no test coverage detected