AndExpr represents an AND expression.
| 151 | |
| 152 | // AndExpr represents an AND expression. |
| 153 | type AndExpr struct { |
| 154 | Left, Right Expr |
| 155 | |
| 156 | typeAnnotation |
| 157 | } |
| 158 | |
| 159 | func (*AndExpr) operatorExpr() {} |
| 160 |
nothing calls this directly
no outgoing calls
no test coverage detected