(
&self,
params: SelectionRangeParams,
)
| 996 | } |
| 997 | |
| 998 | async fn selection_range( |
| 999 | &self, |
| 1000 | params: SelectionRangeParams, |
| 1001 | ) -> Result<Option<Vec<SelectionRange>>> { |
| 1002 | let uri = params.text_document.uri.to_string(); |
| 1003 | let positions = params.positions; |
| 1004 | self.handle_with_uri("selection_range", &uri, |content| { |
| 1005 | self.handle_selection_range(content, &positions) |
| 1006 | }) |
| 1007 | } |
| 1008 | |
| 1009 | async fn semantic_tokens_full( |
| 1010 | &self, |
nothing calls this directly
no test coverage detected