AsString pretty prints a node to a string.
(n NodeFormatter)
| 807 | |
| 808 | // AsString pretty prints a node to a string. |
| 809 | func AsString(n NodeFormatter) string { |
| 810 | return AsStringWithFlags(n, FmtSimple) |
| 811 | } |
| 812 | |
| 813 | // ErrString pretty prints a node to a string. Identifiers are not quoted. |
| 814 | func ErrString(n NodeFormatter) string { |
no test coverage detected
searching dependent graphs…