Serialize pretty prints a node to a string using FmtParsable; it is appropriate when we store expressions into strings that are later parsed back into expressions.
(n NodeFormatter)
| 406 | // appropriate when we store expressions into strings that are later parsed back |
| 407 | // into expressions. |
| 408 | func Serialize(n NodeFormatter) string { |
| 409 | return AsStringWithFlags(n, FmtParsable) |
| 410 | } |
| 411 | |
| 412 | var fmtCtxPool = sync.Pool{ |
| 413 | New: func() interface{} { |
nothing calls this directly
no test coverage detected
searching dependent graphs…