String returns the AST formatted as a string.
()
| 77 | |
| 78 | // String returns the AST formatted as a string. |
| 79 | func (stmts Statements) String() string { |
| 80 | return stmts.StringWithFlags(tree.FmtSimple) |
| 81 | } |
| 82 | |
| 83 | // StringWithFlags returns the AST formatted as a string (with the given flags). |
| 84 | func (stmts Statements) StringWithFlags(flags tree.FmtFlags) string { |
nothing calls this directly
no test coverage detected