2018-03-16 06:20:56 +00:00
|
|
|
extern crate proc_macro;
|
|
|
|
|
|
|
|
use proc_macro::TokenStream;
|
|
|
|
|
|
|
|
#[proc_macro_attribute]
|
|
|
|
pub fn expect_let(attr: TokenStream, item: TokenStream) -> TokenStream {
|
|
|
|
assert!(attr.to_string().is_empty());
|
2023-11-10 03:34:56 +00:00
|
|
|
assert_eq!(item.to_string(), "let string = \"Hello, world!\";");
|
2018-03-16 06:20:56 +00:00
|
|
|
item
|
|
|
|
}
|
|
|
|
|
|
|
|
#[proc_macro_attribute]
|
2020-11-27 02:44:09 +00:00
|
|
|
pub fn expect_my_macro_stmt(attr: TokenStream, item: TokenStream) -> TokenStream {
|
2018-03-16 06:20:56 +00:00
|
|
|
assert!(attr.to_string().is_empty());
|
2023-11-10 03:34:56 +00:00
|
|
|
assert_eq!(item.to_string(), "my_macro! (\"{}\", string);");
|
2018-03-16 06:20:56 +00:00
|
|
|
item
|
|
|
|
}
|
|
|
|
|
|
|
|
#[proc_macro_attribute]
|
|
|
|
pub fn expect_expr(attr: TokenStream, item: TokenStream) -> TokenStream {
|
|
|
|
assert!(attr.to_string().is_empty());
|
|
|
|
assert_eq!(item.to_string(), "print_str(\"string\")");
|
|
|
|
item
|
|
|
|
}
|
|
|
|
|
|
|
|
#[proc_macro_attribute]
|
2020-11-27 02:44:09 +00:00
|
|
|
pub fn expect_my_macro_expr(attr: TokenStream, item: TokenStream) -> TokenStream {
|
2018-03-16 06:20:56 +00:00
|
|
|
assert!(attr.to_string().is_empty());
|
2023-08-08 01:43:44 +00:00
|
|
|
assert_eq!(item.to_string(), "my_macro!(\"{}\", string)");
|
2018-03-16 06:20:56 +00:00
|
|
|
item
|
|
|
|
}
|
|
|
|
|
|
|
|
#[proc_macro_attribute]
|
|
|
|
pub fn duplicate(attr: TokenStream, item: TokenStream) -> TokenStream {
|
|
|
|
assert!(attr.to_string().is_empty());
|
|
|
|
format!("{}, {}", item, item).parse().unwrap()
|
|
|
|
}
|
|
|
|
|
|
|
|
#[proc_macro_attribute]
|
|
|
|
pub fn no_output(attr: TokenStream, item: TokenStream) -> TokenStream {
|
|
|
|
assert!(attr.to_string().is_empty());
|
|
|
|
assert!(!item.to_string().is_empty());
|
|
|
|
"".parse().unwrap()
|
|
|
|
}
|