Format implements the NodeFormatter interface.
(ctx *FmtCtx)
| 269 | |
| 270 | // Format implements the NodeFormatter interface. |
| 271 | func (n *TableIndexNames) Format(ctx *FmtCtx) { |
| 272 | sep := "" |
| 273 | for _, tni := range *n { |
| 274 | ctx.WriteString(sep) |
| 275 | ctx.FormatNode(tni) |
| 276 | sep = ", " |
| 277 | } |
| 278 | } |
nothing calls this directly
no test coverage detected