AsString pretty prints a node to a string.
(n NodeFormatter)
| 394 | |
| 395 | // AsString pretty prints a node to a string. |
| 396 | func AsString(n NodeFormatter) string { |
| 397 | return AsStringWithFlags(n, FmtSimple) |
| 398 | } |
| 399 | |
| 400 | // ErrString pretty prints a node to a string. Identifiers are not quoted. |
| 401 | func ErrString(n NodeFormatter) string { |
no test coverage detected
searching dependent graphs…