Get the location corresponding to `lookahead`.
(&self)
| 175 | |
| 176 | // Get the location corresponding to `lookahead`. |
| 177 | fn loc(&self) -> Location { |
| 178 | Location { |
| 179 | line_number: self.line_number, |
| 180 | } |
| 181 | } |
| 182 | |
| 183 | // Starting from `lookahead`, are we looking at `prefix`? |
| 184 | fn looking_at(&self, prefix: &str) -> bool { |
no outgoing calls
no test coverage detected