AsStringWithFQNames pretty prints a node to a string with the FmtAlwaysQualifyTableNames flag (which requires annotations).
(n NodeFormatter, ann *Annotations)
| 387 | // AsStringWithFQNames pretty prints a node to a string with the |
| 388 | // FmtAlwaysQualifyTableNames flag (which requires annotations). |
| 389 | func AsStringWithFQNames(n NodeFormatter, ann *Annotations) string { |
| 390 | ctx := NewFmtCtxEx(FmtAlwaysQualifyTableNames, ann) |
| 391 | ctx.FormatNode(n) |
| 392 | return ctx.CloseAndGetString() |
| 393 | } |
| 394 | |
| 395 | // AsString pretty prints a node to a string. |
| 396 | func AsString(n NodeFormatter) string { |
nothing calls this directly
no test coverage detected
searching dependent graphs…