(tcx: TyCtxt<'tcx>, typing_env: TypingEnv<'tcx>)
| 66 | impl<'tcx> DeadlockDetector<'tcx> { |
| 67 | pub fn new(tcx: TyCtxt<'tcx>, typing_env: TypingEnv<'tcx>) -> Self { |
| 68 | Self { |
| 69 | tcx, |
| 70 | typing_env, |
| 71 | lockguard_relations: Default::default(), |
| 72 | } |
| 73 | } |
| 74 | |
| 75 | fn collect_lockguards( |
| 76 | &self, |
| 77 | callgraph: &CallGraph<'tcx>, |
nothing calls this directly
no outgoing calls
no test coverage detected