(self, op, right)
| 366 | return ''.join(['(', operation, ')']) |
| 367 | |
| 368 | def BuildUnaryOperation(self, op, right): |
| 369 | OPS = { |
| 370 | 'neg': 'NOT', |
| 371 | } |
| 372 | return ' '.join([OPS[op], right]) |
| 373 | |
| 374 | def BuildBinaryOperation(self, left, op, right): |
| 375 | if op == 'ne': |
no test coverage detected