mirror of
https://git.intege.rs/xlib/x.git
synced 2025-12-06 04:45:02 +00:00
initial
This commit is contained in:
12
proc_macro/src/lib.rs
Normal file
12
proc_macro/src/lib.rs
Normal file
@@ -0,0 +1,12 @@
|
||||
#![feature(proc_macro_quote)]
|
||||
#![feature(proc_macro_span)]
|
||||
#![feature(custom_inner_attributes)]
|
||||
|
||||
use proc_macro::*;
|
||||
|
||||
mod sigscan;
|
||||
|
||||
#[proc_macro]
|
||||
pub fn signature(input: TokenStream) -> TokenStream {
|
||||
sigscan::macro_proc(input)
|
||||
}
|
||||
Reference in New Issue
Block a user