()
| 127 | } |
| 128 | |
| 129 | private movePrev(): void { |
| 130 | this.loadPrevChar(); |
| 131 | while (!this.startOfFile && this._char === '\r') { |
| 132 | this.decAddr(); |
| 133 | this.loadPrevChar(); |
| 134 | } |
| 135 | } |
| 136 | |
| 137 | private decAddr(): void { |
| 138 | if (this.address > 0) { |
no test coverage detected