Parses the given text and returns a parse tree.
(self, text)
| 1595 | self.text = "" |
| 1596 | |
| 1597 | def parse(self, text): |
| 1598 | """Parses the given text and returns a parse tree.""" |
| 1599 | self.reset() |
| 1600 | self.text = text |
| 1601 | return self.parse_all() |
| 1602 | |
| 1603 | def parse_all(self): |
| 1604 | while True: |