(self)
| 513 | return nodes.Concat(args, lineno=lineno) |
| 514 | |
| 515 | def parse_math2(self): |
| 516 | lineno = self.stream.current.lineno |
| 517 | left = self.parse_pow() |
| 518 | while self.stream.current.type in ('mul', 'div', 'floordiv', 'mod'): |
| 519 | cls = _math_nodes[self.stream.current.type] |
| 520 | next(self.stream) |
| 521 | right = self.parse_pow() |
| 522 | left = cls(left, right, lineno=lineno) |
| 523 | lineno = self.stream.current.lineno |
| 524 | return left |
| 525 | |
| 526 | def parse_pow(self): |
| 527 | lineno = self.stream.current.lineno |
no test coverage detected