TypedLeftFrom returns the RangeCond's left expression as a TypedExpr, in the context of a comparison with TypedFrom().
()
| 576 | // TypedLeftFrom returns the RangeCond's left expression as a TypedExpr, in the |
| 577 | // context of a comparison with TypedFrom(). |
| 578 | func (node *RangeCond) TypedLeftFrom() TypedExpr { |
| 579 | return node.Left.(TypedExpr) |
| 580 | } |
| 581 | |
| 582 | // TypedFrom returns the RangeCond's from expression as a TypedExpr. |
| 583 | func (node *RangeCond) TypedFrom() TypedExpr { |