AndExpr represents an AND expression.
| 160 | |
| 161 | // AndExpr represents an AND expression. |
| 162 | type AndExpr struct { |
| 163 | Left, Right Expr |
| 164 | |
| 165 | typeAnnotation |
| 166 | } |
| 167 | |
| 168 | func (*AndExpr) operatorExpr() {} |
| 169 |
nothing calls this directly
no outgoing calls
no test coverage detected