IfExpr represents an IF expression.
| 653 | |
| 654 | // IfExpr represents an IF expression. |
| 655 | type IfExpr struct { |
| 656 | Cond Expr |
| 657 | True Expr |
| 658 | Else Expr |
| 659 | |
| 660 | typeAnnotation |
| 661 | } |
| 662 | |
| 663 | // TypedTrueExpr returns the IfExpr's True expression as a TypedExpr. |
| 664 | func (node *IfExpr) TypedTrueExpr() TypedExpr { |
nothing calls this directly
no outgoing calls
no test coverage detected