()
| 1104 | } |
| 1105 | |
| 1106 | func (i BinaryOperator) String() string { |
| 1107 | if i < 0 || i > BinaryOperator(len(binaryOpName)-1) { |
| 1108 | return fmt.Sprintf("BinaryOp(%d)", i) |
| 1109 | } |
| 1110 | return binaryOpName[i] |
| 1111 | } |
| 1112 | |
| 1113 | // BinaryExpr represents a binary value expression. |
| 1114 | type BinaryExpr struct { |
nothing calls this directly
no test coverage detected