(self)
| 614 | return left |
| 615 | |
| 616 | def parse_pow(self) -> nodes.Expr: |
| 617 | lineno = self.stream.current.lineno |
| 618 | left = self.parse_unary() |
| 619 | while self.stream.current.type == "pow": |
| 620 | next(self.stream) |
| 621 | right = self.parse_unary() |
| 622 | left = nodes.Pow(left, right, lineno=lineno) |
| 623 | lineno = self.stream.current.lineno |
| 624 | return left |
| 625 | |
| 626 | def parse_unary(self, with_filter: bool = True) -> nodes.Expr: |
| 627 | token_type = self.stream.current.type |
no test coverage detected