OrExpr represents an OR expression.
| 206 | |
| 207 | // OrExpr represents an OR expression. |
| 208 | type OrExpr struct { |
| 209 | Left, Right Expr |
| 210 | |
| 211 | typeAnnotation |
| 212 | } |
| 213 | |
| 214 | func (*OrExpr) operatorExpr() {} |
| 215 |
nothing calls this directly
no outgoing calls
no test coverage detected