| 190 | |
| 191 | #[derive(Debug)] |
| 192 | enum AccessPattern<'tcx> { |
| 193 | Ref(PlaceRef<'tcx>), |
| 194 | Indirect(PlaceRef<'tcx>), |
| 195 | Direct(PlaceRef<'tcx>), |
| 196 | Constant(Const<'tcx>), |
| 197 | } |
| 198 | |
| 199 | #[derive(Default)] |
| 200 | struct ConstraintGraph<'tcx> { |
nothing calls this directly
no outgoing calls
no test coverage detected