Push back the last one non-whitespace token. Must be called after `next_token()`, otherwise might panic. OK to call after `next_token()` indicates an EOF.
(&mut self)
| 1792 | /// `next_token()`, otherwise might panic. OK to call after |
| 1793 | /// `next_token()` indicates an EOF. |
| 1794 | fn prev_token(&mut self) { |
| 1795 | assert!(self.index > 0); |
| 1796 | self.index -= 1; |
| 1797 | } |
| 1798 | |
| 1799 | /// Return the byte position within the query string at which the |
| 1800 | /// next token starts. |
no outgoing calls
no test coverage detected