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