TypedTrueExpr returns the IfExpr's True expression as a TypedExpr.
()
| 662 | |
| 663 | // TypedTrueExpr returns the IfExpr's True expression as a TypedExpr. |
| 664 | func (node *IfExpr) TypedTrueExpr() TypedExpr { |
| 665 | return node.True.(TypedExpr) |
| 666 | } |
| 667 | |
| 668 | // TypedCondExpr returns the IfExpr's Cond expression as a TypedExpr. |
| 669 | func (node *IfExpr) TypedCondExpr() TypedExpr { |