TypedLeft returns the OrExpr's left expression as a TypedExpr.
()
| 227 | |
| 228 | // TypedLeft returns the OrExpr's left expression as a TypedExpr. |
| 229 | func (node *OrExpr) TypedLeft() TypedExpr { |
| 230 | return node.Left.(TypedExpr) |
| 231 | } |
| 232 | |
| 233 | // TypedRight returns the OrExpr's right expression as a TypedExpr. |
| 234 | func (node *OrExpr) TypedRight() TypedExpr { |