TypedRight returns the OrExpr's right expression as a TypedExpr.
()
| 232 | |
| 233 | // TypedRight returns the OrExpr's right expression as a TypedExpr. |
| 234 | func (node *OrExpr) TypedRight() TypedExpr { |
| 235 | return node.Right.(TypedExpr) |
| 236 | } |
| 237 | |
| 238 | // NotExpr represents a NOT expression. |
| 239 | type NotExpr struct { |