mirror of
https://github.com/rust-lang/rust-analyzer
synced 2025-01-15 22:54:00 +00:00
15 lines
405 B
Rust
15 lines
405 B
Rust
//! Builtin macros and attributes
|
|
#[macro_use]
|
|
pub(crate) 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,
|
|
},
|
|
};
|