(
public readonly text: string,
public readonly startOffset: number,
public readonly isPrecededByNewline: boolean,
public readonly endsWithNewline: boolean = false,
)
| 1107 | |
| 1108 | class WrappedLine { |
| 1109 | constructor( |
| 1110 | public readonly text: string, |
| 1111 | public readonly startOffset: number, |
| 1112 | public readonly isPrecededByNewline: boolean, |
| 1113 | public readonly endsWithNewline: boolean = false, |
| 1114 | ) {} |
| 1115 | |
| 1116 | equals(other: WrappedLine): boolean { |
| 1117 | return this.text === other.text && this.startOffset === other.startOffset |
nothing calls this directly
no outgoing calls
no test coverage detected