Rename parse_macro to parse_macro_expansion

This does not parse macros, it expands a macro and parses the *result*
This commit is contained in:
Jonas Schievink 2020-11-24 21:57:51 +01:00
parent f9d0d51101
commit 9559bce311
6 changed files with 9 additions and 9 deletions

View file

@ -19,7 +19,7 @@ fn syntax_tree_stats(db: &RootDatabase) -> SyntaxTreeStats {
ide_db::base_db::ParseQuery.in_db(db).entries::<SyntaxTreeStats>()
}
fn macro_syntax_tree_stats(db: &RootDatabase) -> SyntaxTreeStats {
hir::db::ParseMacroQuery.in_db(db).entries::<SyntaxTreeStats>()
hir::db::ParseMacroExpansionQuery.in_db(db).entries::<SyntaxTreeStats>()
}
// Feature: Status