(txt: string)
| 43 | } |
| 44 | |
| 45 | protected write(txt: string) { |
| 46 | this.writeIndent(); |
| 47 | this._source += txt; |
| 48 | this._isStartOfLine = false; |
| 49 | } |
| 50 | |
| 51 | protected writeIndent() { |
| 52 | if (this._isStartOfLine && this._indent > 0) { |
no outgoing calls
no test coverage detected