(&self, other: Ref<ITextRangeProvider>)
| 332 | } |
| 333 | |
| 334 | fn Compare(&self, other: Ref<ITextRangeProvider>) -> Result<BOOL> { |
| 335 | let other = unsafe { required_param(&other)?.as_impl() }; |
| 336 | Ok((self.context.ptr_eq(&other.context) |
| 337 | && *self.state.read().unwrap() == *other.state.read().unwrap()) |
| 338 | .into()) |
| 339 | } |
| 340 | |
| 341 | fn CompareEndpoints( |
| 342 | &self, |
nothing calls this directly
no test coverage detected