Got n tokens ahead.
(self, n=1)
| 331 | return result |
| 332 | |
| 333 | def skip(self, n=1): |
| 334 | """Got n tokens ahead.""" |
| 335 | for x in range(n): |
| 336 | next(self) |
| 337 | |
| 338 | def next_if(self, expr): |
| 339 | """Perform the token test and return the token if it matched. |
no test coverage detected