swc_ecma_lexer/parser/
macros.rs

1macro_rules! trace_cur {
2    ($p:expr, $name:ident) => {{
3        if cfg!(feature = "debug") {
4            tracing::debug!("{}: {:?}", stringify!($name), $p.input.cur());
5        }
6    }};
7}