(other: Cursor)
| 964 | } |
| 965 | |
| 966 | equals(other: Cursor): boolean { |
| 967 | return ( |
| 968 | this.offset === other.offset && this.measuredText === other.measuredText |
| 969 | ) |
| 970 | } |
| 971 | |
| 972 | isAtStart(): boolean { |
| 973 | return this.offset === 0 |
no outgoing calls
no test coverage detected