(
&self,
params: SemanticTokensParams,
)
| 1007 | } |
| 1008 | |
| 1009 | async fn semantic_tokens_full( |
| 1010 | &self, |
| 1011 | params: SemanticTokensParams, |
| 1012 | ) -> Result<Option<SemanticTokensResult>> { |
| 1013 | let uri = params.text_document.uri.to_string(); |
| 1014 | self.handle_with_uri("semantic_tokens_full", &uri, |content| { |
| 1015 | self.handle_semantic_tokens_full(&uri, content) |
| 1016 | }) |
| 1017 | } |
| 1018 | |
| 1019 | async fn inlay_hint(&self, params: InlayHintParams) -> Result<Option<Vec<InlayHint>>> { |
| 1020 | self.inlay_hint_request(params).await |
nothing calls this directly
no test coverage detected