TypedFrom returns the RangeCond's from expression as a TypedExpr.
()
| 581 | |
| 582 | // TypedFrom returns the RangeCond's from expression as a TypedExpr. |
| 583 | func (node *RangeCond) TypedFrom() TypedExpr { |
| 584 | return node.From.(TypedExpr) |
| 585 | } |
| 586 | |
| 587 | // TypedLeftTo returns the RangeCond's left expression as a TypedExpr, in the |
| 588 | // context of a comparison with TypedTo(). |