pub fn visit_results<'mir, 'tcx, A>(
body: &'mir Body<'tcx>,
blocks: impl IntoIterator<Item = BasicBlock>,
results: &Results<'tcx, A>,
vis: &mut impl ResultsVisitor<'tcx, A>,
)where
A: Analysis<'tcx>,Expand description
Calls the corresponding method in ResultsVisitor for every location in a mir::Body with the
dataflow state at that location.