MCPcopy Create free account
hub / github.com/PHPantom-dev/phpantom_lsp / semantic_tokens_full

Method semantic_tokens_full

src/server.rs:1009–1017  ·  view source on GitHub ↗
(
        &self,
        params: SemanticTokensParams,
    )

Source from the content-addressed store, hash-verified

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

Callers

nothing calls this directly

Calls 2

handle_with_uriMethod · 0.80

Tested by

no test coverage detected