-
Notifications
You must be signed in to change notification settings - Fork 3
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Refactoring #13
Refactoring #13
Conversation
@Aurel300 let me know when you have Prusti working using the latest version of this branch, I'll merge it into master |
@zgrannan I think it all works, but I still need this patch: --- a/src/borrow_pcg/borrow_pcg_expansion.rs
+++ b/src/borrow_pcg/borrow_pcg_expansion.rs
@@ -34,7 +34,7 @@ use crate::{
/// *x.f.b}
#[derive(PartialEq, Eq, Clone, Debug, Hash)]
pub struct ExpansionOfBorrowed<'tcx, P = LocalNode<'tcx>> {
- pub(crate) base: P,
+ pub base: P,
pub(crate) expansion: BorrowExpansion<'tcx>,
} Or should I be accessing this field differently? I use this field when processing |
I just added a pcg/src/borrow_pcg/borrow_pcg_expansion.rs Lines 174 to 178 in 06c211c
|
Too many refactorings to count