Parse the ASDL in the buffer and return an AST with a Module root.
(self, buf)
| 276 | self.cur_token = None |
| 277 | |
| 278 | def parse(self, buf): |
| 279 | """Parse the ASDL in the buffer and return an AST with a Module root. |
| 280 | """ |
| 281 | self._tokenizer = tokenize_asdl(buf) |
| 282 | self._advance() |
| 283 | return self._parse_module() |
| 284 | |
| 285 | def _parse_module(self): |
| 286 | if self._at_keyword('module'): |
no test coverage detected