We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
DeriveResolution::exts
1 parent 8ece939 commit b728064Copy full SHA for b728064
compiler/rustc_expand/src/base.rs
@@ -1099,6 +1099,9 @@ pub struct Indeterminate;
1099
pub struct DeriveResolution {
1100
pub path: ast::Path,
1101
pub item: Annotatable,
1102
+ // FIXME: currently this field is only used in `is_none`/`is_some` conditions. However, the
1103
+ // `Arc<SyntaxExtension>` will be used if the FIXME in `MacroExpander::fully_expand_fragment`
1104
+ // is completed.
1105
pub exts: Option<Arc<SyntaxExtension>>,
1106
pub is_const: bool,
1107
}
0 commit comments