mirror of
https://github.com/rust-lang/rust-analyzer
synced 2025-01-06 02:08:49 +00:00
15 lines
360 B
Rust
15 lines
360 B
Rust
|
#[macro_use]
|
||
|
mod quote;
|
||
|
|
||
|
mod attr_macro;
|
||
|
mod derive_macro;
|
||
|
mod fn_macro;
|
||
|
|
||
|
pub use self::{
|
||
|
attr_macro::{find_builtin_attr, pseudo_derive_attr_expansion, BuiltinAttrExpander},
|
||
|
derive_macro::{find_builtin_derive, BuiltinDeriveExpander},
|
||
|
fn_macro::{
|
||
|
find_builtin_macro, include_input_to_file_id, BuiltinFnLikeExpander, EagerExpander,
|
||
|
},
|
||
|
};
|