mirror of
https://github.com/rust-lang/rust-analyzer.git
synced 2025-09-30 13:51:31 +00:00
Internal: Cleanup proc-macro error handling
This commit is contained in:
parent
df15b6f668
commit
7beac14cba
39 changed files with 380 additions and 522 deletions
14
crates/hir-expand/src/builtin.rs
Normal file
14
crates/hir-expand/src/builtin.rs
Normal file
|
@ -0,0 +1,14 @@
|
|||
#[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,
|
||||
},
|
||||
};
|
Loading…
Add table
Add a link
Reference in a new issue