diff options
author | Jonas Schievink <[email protected]> | 2020-11-24 20:57:51 +0000 |
---|---|---|
committer | Jonas Schievink <[email protected]> | 2020-11-24 20:57:51 +0000 |
commit | 9559bce311c3b6b7009b9cd09e52c75497c87035 (patch) | |
tree | f28435190d7f830acb6335da5eeaa83a458b5e2a /crates/hir | |
parent | f9d0d511011b7071c621ac3f7c64c4aaec7f2dfb (diff) |
Rename `parse_macro` to `parse_macro_expansion`
This does not parse macros, it expands a macro and parses the *result*
Diffstat (limited to 'crates/hir')
-rw-r--r-- | crates/hir/src/db.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/crates/hir/src/db.rs b/crates/hir/src/db.rs index 07333c453..8c767b249 100644 --- a/crates/hir/src/db.rs +++ b/crates/hir/src/db.rs | |||
@@ -11,7 +11,7 @@ pub use hir_def::db::{ | |||
11 | }; | 11 | }; |
12 | pub use hir_expand::db::{ | 12 | pub use hir_expand::db::{ |
13 | AstDatabase, AstDatabaseStorage, AstIdMapQuery, InternEagerExpansionQuery, InternMacroQuery, | 13 | AstDatabase, AstDatabaseStorage, AstIdMapQuery, InternEagerExpansionQuery, InternMacroQuery, |
14 | MacroArgTextQuery, MacroDefQuery, MacroExpandQuery, ParseMacroQuery, | 14 | MacroArgTextQuery, MacroDefQuery, MacroExpandQuery, ParseMacroExpansionQuery, |
15 | }; | 15 | }; |
16 | pub use hir_ty::db::*; | 16 | pub use hir_ty::db::*; |
17 | 17 | ||