Returns true if the next call to `bump` would return false.
(&self)
| 615 | |
| 616 | /// Returns true if the next call to `bump` would return false. |
| 617 | fn is_eof(&self) -> bool { |
| 618 | self.offset() == self.pattern().len() |
| 619 | } |
| 620 | |
| 621 | /// Return the current position of the parser, which includes the offset, |
| 622 | /// line and column. |
no test coverage detected