(&self, params: CodeLensParams)
| 982 | } |
| 983 | |
| 984 | async fn code_lens(&self, params: CodeLensParams) -> Result<Option<Vec<CodeLens>>> { |
| 985 | let uri = params.text_document.uri.to_string(); |
| 986 | self.handle_with_uri("code_lens", &uri, |content| { |
| 987 | self.handle_code_lens(&uri, content) |
| 988 | }) |
| 989 | } |
| 990 | |
| 991 | async fn document_link(&self, params: DocumentLinkParams) -> Result<Option<Vec<DocumentLink>>> { |
| 992 | let uri = params.text_document.uri.to_string(); |
nothing calls this directly
no test coverage detected