8 lines
178 B
Rust
8 lines
178 B
Rust
#[macro_export]
|
|
/// Convenience wrapper around rustc's `Symbol::intern`
|
|
macro_rules! sym {
|
|
($tt:tt) => {
|
|
rustc_span::symbol::Symbol::intern(stringify!($tt))
|
|
};
|
|
}
|