()
| 60 | } |
| 61 | |
| 62 | ensureNewLine() { |
| 63 | if ( !this.endsWithNewLine ) { |
| 64 | this.buf += NL; |
| 65 | this.endsWithNewLine = true; |
| 66 | this.lineOffset += 1; |
| 67 | this.columnOffset = 0; |
| 68 | } |
| 69 | } |
| 70 | |
| 71 | toString() { |
| 72 | return this.buf; |
no outgoing calls
no test coverage detected