1 2 3 4 5 6 7 8
macro_rules! token_including_semi { (';') => { Token::Semi }; ($t:tt) => { swc_ecma_lexer::tok!($t) }; }