Advance if we are at `Kind`
(&mut self, kind: Kind)
| 150 | |
| 151 | /// Advance if we are at `Kind` |
| 152 | fn bump(&mut self, kind: Kind) { |
| 153 | if self.at(kind) { |
| 154 | self.advance(true); |
| 155 | } |
| 156 | } |
| 157 | |
| 158 | /// Advance any token |
| 159 | fn bump_any(&mut self) { |
no test coverage detected