(body: &'a Body<'tcx>, tcx: TyCtxt<'tcx>)
| 56 | |
| 57 | impl<'a, 'tcx> Andersen<'a, 'tcx> { |
| 58 | pub fn new(body: &'a Body<'tcx>, tcx: TyCtxt<'tcx>) -> Self { |
| 59 | Self { |
| 60 | body, |
| 61 | tcx, |
| 62 | pts: Default::default(), |
| 63 | } |
| 64 | } |
| 65 | |
| 66 | pub fn analyze(&mut self) { |
| 67 | let mut collector = ConstraintGraphCollector::new(self.body, self.tcx); |
nothing calls this directly
no outgoing calls
no test coverage detected