(s: string)
| 125 | } |
| 126 | |
| 127 | private _write(s: string) { |
| 128 | if (this._isStartOfLine) { |
| 129 | this._result.push(this._currentIndention); |
| 130 | } |
| 131 | this._result.push(s); |
| 132 | this._isStartOfLine = false; |
| 133 | } |
| 134 | |
| 135 | private _writeLine(s: string | null = null) { |
| 136 | if (s) { |
no test coverage detected