mirror of
https://github.com/rust-lang/rust-analyzer.git
synced 2025-10-01 14:21:44 +00:00
15 lines
394 B
Rust
15 lines
394 B
Rust
//! Builtin macros and attributes
|
|
#[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,
|
|
},
|
|
};
|