MCPcopy Create free account
hub / github.com/Rust-API/Rust-API-Bypass-Checker / after_analysis

Method after_analysis

src/analysis/callback.rs:38–45  ·  view source on GitHub ↗

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>,
    )

Source from the content-addressed store, hash-verified

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
48impl BypasserCallbacks {

Callers

nothing calls this directly

Calls 1

run_analysisMethod · 0.45

Tested by

no test coverage detected