TypedLeftTo returns the RangeCond's left expression as a TypedExpr, in the context of a comparison with TypedTo().
()
| 587 | // TypedLeftTo returns the RangeCond's left expression as a TypedExpr, in the |
| 588 | // context of a comparison with TypedTo(). |
| 589 | func (node *RangeCond) TypedLeftTo() TypedExpr { |
| 590 | return node.leftTo |
| 591 | } |
| 592 | |
| 593 | // TypedTo returns the RangeCond's to expression as a TypedExpr. |
| 594 | func (node *RangeCond) TypedTo() TypedExpr { |