* Advances to the next line and returns it as a substring * of the raw diff text. Returns null if end of diff was * reached.
()
| 131 | * reached. |
| 132 | */ |
| 133 | private readLine(): string | null { |
| 134 | return this.nextLine() ? this.text.substring(this.ls, this.le) : null |
| 135 | } |
| 136 | |
| 137 | /** Tests if the current line starts with the given search text */ |
| 138 | private lineStartsWith(searchString: string): boolean { |