38
export class ModelLineProjectionData {
39
constructor(
41
>
/**
42
>
* `injectionOptions.length` must equal `injectionOffsets.length`
43
>
*/
44
>
public injectionOptions: InjectedTextOptions[] | null,
45
>
/**
46
>
* Refers to offsets after applying injections to the source.
47
>
* The last break offset indicates the length of the source after applying injections.
48
>
*/
49
>
public breakOffsets: number[],
50
>
/**
51
>
* Refers to offsets after applying injections
52
>
*/
53
>
public breakOffsetsVisibleColumn: number[],
54
>
public wrappedTextIndentLength: number
55
>
) {
56
>
}
57
58
public getOutputLineCount(): number {