45
46
constructor(
48
>
languageId: string,
49
>
firstTokenIndex: number,
50
>
lastTokenIndex: number,
51
>
firstCharOffset: number,
52
>
lastCharOffset: number
53
>
) {
54
>
this._actual = actual;
55
>
this.languageId = languageId;
56
>
this._firstTokenIndex = firstTokenIndex;
57
>
this._lastTokenIndex = lastTokenIndex;
58
>
this.firstCharOffset = firstCharOffset;
59
>
this._lastCharOffset = lastCharOffset;
60
>
this.languageIdCodec = actual.languageIdCodec;
61
>
}
62
63
public getLineContent(): string {