TypedTo returns the RangeCond's to expression as a TypedExpr.
()
| 592 | |
| 593 | // TypedTo returns the RangeCond's to expression as a TypedExpr. |
| 594 | func (node *RangeCond) TypedTo() TypedExpr { |
| 595 | return node.To.(TypedExpr) |
| 596 | } |
| 597 | |
| 598 | // IsOfTypeExpr represents an IS {,NOT} OF (type_list) expression. |
| 599 | type IsOfTypeExpr struct { |