Called after analysis. Return value instructs the compiler whether to continue the compilation afterwards (defaults to `Compilation::Continue`)
(
&mut self,
compiler: &'compiler interface::Compiler,
tcx: TyCtxt<'tcx>,
)
| 36 | /// Called after analysis. Return value instructs the compiler whether to |
| 37 | /// continue the compilation afterwards (defaults to `Compilation::Continue`) |
| 38 | fn after_analysis<'compiler, 'tcx>( |
| 39 | &mut self, |
| 40 | compiler: &'compiler interface::Compiler, |
| 41 | tcx: TyCtxt<'tcx>, |
| 42 | ) -> Compilation { |
| 43 | self.run_analysis(compiler, tcx); |
| 44 | Compilation::Continue |
| 45 | } |
| 46 | } |
| 47 | |
| 48 | impl BypasserCallbacks { |
nothing calls this directly
no test coverage detected