Collect lockguard info.
| 216 | |
| 217 | /// Collect lockguard info. |
| 218 | pub struct LockGuardCollector<'a, 'b, 'tcx> { |
| 219 | instance_id: InstanceId, |
| 220 | instance: &'a Instance<'tcx>, |
| 221 | body: &'b Body<'tcx>, |
| 222 | tcx: TyCtxt<'tcx>, |
| 223 | typing_env: TypingEnv<'tcx>, |
| 224 | pub lockguards: LockGuardMap<'tcx>, |
| 225 | } |
| 226 | |
| 227 | impl<'a, 'b, 'tcx> LockGuardCollector<'a, 'b, 'tcx> { |
| 228 | pub fn new( |
nothing calls this directly
no outgoing calls
no test coverage detected