(&self, params: DocumentLinkParams)
| 989 | } |
| 990 | |
| 991 | async fn document_link(&self, params: DocumentLinkParams) -> Result<Option<Vec<DocumentLink>>> { |
| 992 | let uri = params.text_document.uri.to_string(); |
| 993 | self.handle_with_uri("document_link", &uri, |content| { |
| 994 | self.handle_document_link(&uri, content) |
| 995 | }) |
| 996 | } |
| 997 | |
| 998 | async fn selection_range( |
| 999 | &self, |
nothing calls this directly
no test coverage detected