TypedRight returns the AndExpr's right expression as a TypedExpr.
()
| 201 | |
| 202 | // TypedRight returns the AndExpr's right expression as a TypedExpr. |
| 203 | func (node *AndExpr) TypedRight() TypedExpr { |
| 204 | return node.Right.(TypedExpr) |
| 205 | } |
| 206 | |
| 207 | // OrExpr represents an OR expression. |
| 208 | type OrExpr struct { |