]> git.proxmox.com Git - rustc.git/blame - vendor/darling_core/src/macros_private.rs
New upstream version 1.45.0+dfsg1
[rustc.git] / vendor / darling_core / src / macros_private.rs
CommitLineData
dc9dc135
XL
1macro_rules! quote {
2 ($($tt:tt)*) => {
3 quote_spanned!(::proc_macro2::Span::call_site() => $($tt)*)
4 };
5}
6
7macro_rules! path {
8 ($($path:tt)+) => {
9 parse_quote!($($path)+)
10 //stringify!($($path)+).parse().unwrap()
11 };
12}