(self, op, right)
| 190 | raise UnsupportedOperation(f'Unsupported arity {len(expr.children)}') |
| 191 | |
| 192 | def _UnaryExpr(self, op, right): |
| 193 | right = self._Expr(right) |
| 194 | return self.builder.BuildUnaryOperation(op, right) |
| 195 | |
| 196 | def _BinaryExpr(self, op, left, right): |
| 197 | left = self._Expr(left) |
no test coverage detected