OrExpr represents an OR expression.
| 215 | |
| 216 | // OrExpr represents an OR expression. |
| 217 | type OrExpr struct { |
| 218 | Left, Right Expr |
| 219 | |
| 220 | typeAnnotation |
| 221 | } |
| 222 | |
| 223 | func (*OrExpr) operatorExpr() {} |
| 224 |
nothing calls this directly
no outgoing calls
no test coverage detected