(other: Cursor)
| 989 | } |
| 990 | |
| 991 | equals(other: Cursor): boolean { |
| 992 | return ( |
| 993 | this.offset === other.offset && this.measuredText === other.measuredText |
| 994 | ) |
| 995 | } |
| 996 | |
| 997 | isAtStart(): boolean { |
| 998 | return this.offset === 0 |
no outgoing calls
no test coverage detected