(lockguard_id: LockGuardId)
| 694 | /// Basically, `AliasId` and `LockGuardId` share the same info. |
| 695 | impl std::convert::From<LockGuardId> for AliasId { |
| 696 | fn from(lockguard_id: LockGuardId) -> Self { |
| 697 | Self { |
| 698 | instance_id: lockguard_id.instance_id, |
| 699 | local: lockguard_id.local, |
| 700 | } |
| 701 | } |
| 702 | } |
| 703 | |
| 704 | /// Alias analysis based on points-to info. |
nothing calls this directly
no outgoing calls
no test coverage detected