(self)
| 322 | return node |
| 323 | |
| 324 | def parse_extends(self) -> nodes.Extends: |
| 325 | node = nodes.Extends(lineno=next(self.stream).lineno) |
| 326 | node.template = self.parse_expression() |
| 327 | return node |
| 328 | |
| 329 | def parse_import_context( |
| 330 | self, node: _ImportInclude, default: bool |
nothing calls this directly
no test coverage detected