TypedLeft returns the AndExpr's left expression as a TypedExpr.
()
| 196 | |
| 197 | // TypedLeft returns the AndExpr's left expression as a TypedExpr. |
| 198 | func (node *AndExpr) TypedLeft() TypedExpr { |
| 199 | return node.Left.(TypedExpr) |
| 200 | } |
| 201 | |
| 202 | // TypedRight returns the AndExpr's right expression as a TypedExpr. |
| 203 | func (node *AndExpr) TypedRight() TypedExpr { |