()
| 1106 | } |
| 1107 | |
| 1108 | func (f *SQLFormatter) writeNewline() { |
| 1109 | if !f.compact { |
| 1110 | f.builder.WriteString("\n") |
| 1111 | } else { |
| 1112 | f.builder.WriteString(" ") |
| 1113 | } |
| 1114 | } |
| 1115 | |
| 1116 | func (f *SQLFormatter) increaseIndent() { |
| 1117 | f.newlineLevel++ |
no outgoing calls
no test coverage detected