(other: WrappedLine)
| 1114 | ) {} |
| 1115 | |
| 1116 | equals(other: WrappedLine): boolean { |
| 1117 | return this.text === other.text && this.startOffset === other.startOffset |
| 1118 | } |
| 1119 | |
| 1120 | get length(): number { |
| 1121 | return this.text.length + (this.endsWithNewline ? 1 : 0) |
nothing calls this directly
no outgoing calls
no test coverage detected