internal: consistent module naming
This commit is contained in:
parent
7548cb4273
commit
55d8be5a24
@ -10,7 +10,7 @@
|
||||
//! and harder to understand.
|
||||
|
||||
mod mbe;
|
||||
mod builtin;
|
||||
mod builtin_fn_macro;
|
||||
|
||||
use std::{iter, ops::Range};
|
||||
|
||||
|
@ -9,9 +9,9 @@ use base_db::{CrateId, Edition, FileId, ProcMacroId};
|
||||
use cfg::{CfgExpr, CfgOptions};
|
||||
use hir_expand::{
|
||||
ast_id_map::FileAstId,
|
||||
builtin_attr::find_builtin_attr,
|
||||
builtin_derive::find_builtin_derive,
|
||||
builtin_macro::find_builtin_macro,
|
||||
builtin_attr_macro::find_builtin_attr,
|
||||
builtin_derive_macro::find_builtin_derive,
|
||||
builtin_fn_macro::find_builtin_macro,
|
||||
name::{name, AsName, Name},
|
||||
proc_macro::ProcMacroExpander,
|
||||
ExpandTo, HirFileId, MacroCallId, MacroCallKind, MacroDefId, MacroDefKind,
|
||||
|
@ -8,9 +8,9 @@ pub mod db;
|
||||
pub mod ast_id_map;
|
||||
pub mod name;
|
||||
pub mod hygiene;
|
||||
pub mod builtin_attr;
|
||||
pub mod builtin_derive;
|
||||
pub mod builtin_macro;
|
||||
pub mod builtin_attr_macro;
|
||||
pub mod builtin_derive_macro;
|
||||
pub mod builtin_fn_macro;
|
||||
pub mod proc_macro;
|
||||
pub mod quote;
|
||||
pub mod eager;
|
||||
@ -31,9 +31,9 @@ use syntax::{
|
||||
|
||||
use crate::{
|
||||
ast_id_map::FileAstId,
|
||||
builtin_attr::BuiltinAttrExpander,
|
||||
builtin_derive::BuiltinDeriveExpander,
|
||||
builtin_macro::{BuiltinFnLikeExpander, EagerExpander},
|
||||
builtin_attr_macro::BuiltinAttrExpander,
|
||||
builtin_derive_macro::BuiltinDeriveExpander,
|
||||
builtin_fn_macro::{BuiltinFnLikeExpander, EagerExpander},
|
||||
db::TokenExpander,
|
||||
proc_macro::ProcMacroExpander,
|
||||
};
|
||||
|
Loading…
x
Reference in New Issue
Block a user