(&self)
| 94 | /// ``` |
| 95 | #[inline] |
| 96 | pub fn is_significant(&self) -> bool { |
| 97 | !matches!(self, TokenKind::Whitespace | TokenKind::Newline) |
| 98 | } |
| 99 | |
| 100 | /// Check if this is a content-bearing token (not structural). |
| 101 | /// |
no outgoing calls
no test coverage detected