(self)
| 503 | return left |
| 504 | |
| 505 | def parse_concat(self): |
| 506 | lineno = self.stream.current.lineno |
| 507 | args = [self.parse_math2()] |
| 508 | while self.stream.current.type == 'tilde': |
| 509 | next(self.stream) |
| 510 | args.append(self.parse_math2()) |
| 511 | if len(args) == 1: |
| 512 | return args[0] |
| 513 | return nodes.Concat(args, lineno=lineno) |
| 514 | |
| 515 | def parse_math2(self): |
| 516 | lineno = self.stream.current.lineno |
no test coverage detected