TypedExprAt returns the expression at the specified index as a TypedExpr.
(idx int)
| 738 | |
| 739 | // TypedExprAt returns the expression at the specified index as a TypedExpr. |
| 740 | func (node *CoalesceExpr) TypedExprAt(idx int) TypedExpr { |
| 741 | return node.Exprs[idx].(TypedExpr) |
| 742 | } |
| 743 | |
| 744 | // Format implements the NodeFormatter interface. |
| 745 | func (node *CoalesceExpr) Format(ctx *FmtCtx) { |