()
| 68 | return buffer; |
| 69 | } |
| 70 | #isEOF(): boolean { |
| 71 | return this.#cursor >= this.#input.length; |
| 72 | } |
| 73 | #parseRecord(zeroBasedStartLine: number): string[] | null { |
| 74 | let fullLine = this.#readLine(); |
| 75 | if (fullLine === null) return null; |
no outgoing calls
no test coverage detected