add macro for out-of-line definitions
Signed-off-by: Jason Volk <jason@zemos.net>
This commit is contained in:
parent
96f6a75bc8
commit
3b5607ecdc
2 changed files with 27 additions and 0 deletions
|
@ -1,6 +1,7 @@
|
|||
mod admin;
|
||||
mod cargo;
|
||||
mod debug;
|
||||
mod implement;
|
||||
mod refutable;
|
||||
mod rustc;
|
||||
mod utils;
|
||||
|
@ -23,3 +24,6 @@ pub fn rustc_flags_capture(args: TokenStream) -> TokenStream { rustc::flags_capt
|
|||
|
||||
#[proc_macro_attribute]
|
||||
pub fn refutable(args: TokenStream, input: TokenStream) -> TokenStream { refutable::refutable(args, input) }
|
||||
|
||||
#[proc_macro_attribute]
|
||||
pub fn implement(args: TokenStream, input: TokenStream) -> TokenStream { implement::implement(args, input) }
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue