Generate `ConstraintGraph` by visiting MIR body.
| 414 | |
| 415 | /// Generate `ConstraintGraph` by visiting MIR body. |
| 416 | struct ConstraintGraphCollector<'a, 'tcx> { |
| 417 | body: &'a Body<'tcx>, |
| 418 | tcx: TyCtxt<'tcx>, |
| 419 | graph: ConstraintGraph<'tcx>, |
| 420 | } |
| 421 | |
| 422 | impl<'a, 'tcx> ConstraintGraphCollector<'a, 'tcx> { |
| 423 | fn new(body: &'a Body<'tcx>, tcx: TyCtxt<'tcx>) -> Self { |
nothing calls this directly
no outgoing calls
no test coverage detected