()
| 1157 | } |
| 1158 | |
| 1159 | func (i BinaryOperator) String() string { |
| 1160 | if i < 0 || i > BinaryOperator(len(binaryOpName)-1) { |
| 1161 | return fmt.Sprintf("BinaryOp(%d)", i) |
| 1162 | } |
| 1163 | return binaryOpName[i] |
| 1164 | } |
| 1165 | |
| 1166 | // BinaryExpr represents a binary value expression. |
| 1167 | type BinaryExpr struct { |
nothing calls this directly
no test coverage detected