()
| 1200 | } |
| 1201 | |
| 1202 | func (i UnaryOperator) String() string { |
| 1203 | if i < 0 || i > UnaryOperator(len(unaryOpName)-1) { |
| 1204 | return fmt.Sprintf("UnaryOp(%d)", i) |
| 1205 | } |
| 1206 | return unaryOpName[i] |
| 1207 | } |
| 1208 | |
| 1209 | // UnaryExpr represents a unary value expression. |
| 1210 | type UnaryExpr struct { |
nothing calls this directly
no test coverage detected