(self)
| 492 | return nodes.Compare(expr, ops, lineno=lineno) |
| 493 | |
| 494 | def parse_math1(self): |
| 495 | lineno = self.stream.current.lineno |
| 496 | left = self.parse_concat() |
| 497 | while self.stream.current.type in ('add', 'sub'): |
| 498 | cls = _math_nodes[self.stream.current.type] |
| 499 | next(self.stream) |
| 500 | right = self.parse_concat() |
| 501 | left = cls(left, right, lineno=lineno) |
| 502 | lineno = self.stream.current.lineno |
| 503 | return left |
| 504 | |
| 505 | def parse_concat(self): |
| 506 | lineno = self.stream.current.lineno |
no test coverage detected