Format is part of the Expr interface.
(ctx *FmtCtx)
| 217 | |
| 218 | // Format is part of the Expr interface. |
| 219 | func (node *RoutineExpr) Format(ctx *FmtCtx) { |
| 220 | ctx.FormatName(node.Name) |
| 221 | ctx.WriteByte('(') |
| 222 | ctx.FormatNode(&node.Args) |
| 223 | ctx.WriteByte(')') |
| 224 | } |
| 225 | |
| 226 | // Walk is part of the Expr interface. |
| 227 | func (node *RoutineExpr) Walk(v Visitor) Expr { |
nothing calls this directly
no test coverage detected