Format implements the NodeFormatter interface.
(ctx *FmtCtx)
| 209 | |
| 210 | // Format implements the NodeFormatter interface. |
| 211 | func (ts *TableNames) Format(ctx *FmtCtx) { |
| 212 | sep := "" |
| 213 | for i := range *ts { |
| 214 | ctx.WriteString(sep) |
| 215 | ctx.FormatNode(&(*ts)[i]) |
| 216 | sep = ", " |
| 217 | } |
| 218 | } |
| 219 | func (ts *TableNames) String() string { return AsString(ts) } |
| 220 | |
| 221 | // TableIndexName refers to a table index. There are a few cases: |
nothing calls this directly
no test coverage detected