Add additional comment

This commit is contained in:
Aaron Hill 2020-02-15 15:51:40 -05:00
parent 51a16e574a
commit 516459870c
No known key found for this signature in database
GPG Key ID: B4087E510E98B164

View File

@ -429,6 +429,12 @@ pub struct Crate {
pub module: Mod,
pub attrs: Vec<Attribute>,
pub span: Span,
/// The order of items in the HIR is unrelated to the order of
/// items in the AST. However, we generate proc macro harnesses
/// based on the AST order, and later refer to these harnesses
/// from the HIR. This field keeps track of the order in which
/// we generated proc macros harnesses, so that we can map
/// HIR proc macros items back to their harness items.
pub proc_macros: Vec<NodeId>,
}