We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2b60338 commit 021c052Copy full SHA for 021c052
compiler/rustc_query_impl/src/on_disk_cache.rs
@@ -86,8 +86,10 @@ pub struct OnDiskCache<'sess> {
86
expn_data: UnhashMap<ExpnHash, AbsoluteBytePos>,
87
// Additional information used when decoding hygiene data.
88
hygiene_context: HygieneDecodeContext,
89
- // FIXME(mw): Update this comment:
90
- // Likewise for ExpnId.
+ // Maps `ExpnHash`es to their raw value from the *previous*
+ // compilation session. This is used as an initial 'guess' when
91
+ // we try to map an `ExpnHash` to its value in the current
92
+ // compilation session.
93
foreign_expn_data: UnhashMap<ExpnHash, u32>,
94
}
95
0 commit comments