(
&self,
params: DocumentSymbolParams,
)
| 956 | } |
| 957 | |
| 958 | async fn document_symbol( |
| 959 | &self, |
| 960 | params: DocumentSymbolParams, |
| 961 | ) -> Result<Option<DocumentSymbolResponse>> { |
| 962 | let uri = params.text_document.uri.to_string(); |
| 963 | |
| 964 | self.handle_with_uri("document_symbol", &uri, |content| { |
| 965 | self.handle_document_symbol(&uri, content) |
| 966 | }) |
| 967 | } |
| 968 | |
| 969 | #[allow(deprecated)] // SymbolInformation::deprecated is deprecated in the LSP types crate |
| 970 | async fn symbol( |
nothing calls this directly
no test coverage detected