constructor(uri: URI, lines: string[], eol: string, versionId: number) {
this._lines = lines;
this._eol = eol;
this._versionId = versionId;
this._lineStarts = null;
this._cachedTextValue = null;
}
dispose(): void {