(self)
| 1634 | yield _Node("text", self.text[self.pos :]) |
| 1635 | |
| 1636 | def match(self): |
| 1637 | match = tokenprog.match(self.text, self.pos) |
| 1638 | if match is None: |
| 1639 | raise _ItplError(self.text, self.pos) |
| 1640 | return match, match.end() |
| 1641 | |
| 1642 | def is_literal(self, text): |
| 1643 | return text and text[0] in "0123456789\"'" |
no test coverage detected