(s: string)
| 108 | return result; |
| 109 | |
| 110 | function append(s: string) { |
| 111 | if (startOfLine) { |
| 112 | result += " ".repeat(indent); |
| 113 | startOfLine = false; |
| 114 | } |
| 115 | result += s; |
| 116 | } |
| 117 | |
| 118 | function appendNewLine() { |
| 119 | append("\n"); |
no outgoing calls
no test coverage detected