String returns the AST formatted as a string.
()
| 63 | |
| 64 | // String returns the AST formatted as a string. |
| 65 | func (stmts Statements) String() string { |
| 66 | return stmts.StringWithFlags(tree.FmtSimple) |
| 67 | } |
| 68 | |
| 69 | // StringWithFlags returns the AST formatted as a string (with the given flags). |
| 70 | func (stmts Statements) StringWithFlags(flags tree.FmtFlags) string { |
nothing calls this directly
no test coverage detected