()
| 1242 | } |
| 1243 | |
| 1244 | func (i UnaryOperator) String() string { |
| 1245 | if i < 0 || i > UnaryOperator(len(unaryOpName)-1) { |
| 1246 | return fmt.Sprintf("UnaryOp(%d)", i) |
| 1247 | } |
| 1248 | return unaryOpName[i] |
| 1249 | } |
| 1250 | |
| 1251 | // UnaryExpr represents a unary value expression. |
| 1252 | type UnaryExpr struct { |
nothing calls this directly
no test coverage detected