ComparisonExpr represents a two-value comparison expression.
| 409 | |
| 410 | // ComparisonExpr represents a two-value comparison expression. |
| 411 | type ComparisonExpr struct { |
| 412 | Operator ComparisonOperator |
| 413 | SubOperator ComparisonOperator // used for array operators (when Operator is Any, Some, or All) |
| 414 | Left, Right Expr |
| 415 | |
| 416 | typeAnnotation |
| 417 | fn *CmpOp |
| 418 | } |
| 419 | |
| 420 | func (*ComparisonExpr) operatorExpr() {} |
| 421 |
nothing calls this directly
no outgoing calls
no test coverage detected