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

Method selection_range

src/server.rs:998–1007  ·  view source on GitHub ↗
(
        &self,
        params: SelectionRangeParams,
    )

Source from the content-addressed store, hash-verified

996 }
997
998 async fn selection_range(
999 &self,
1000 params: SelectionRangeParams,
1001 ) -> Result<Option<Vec<SelectionRange>>> {
1002 let uri = params.text_document.uri.to_string();
1003 let positions = params.positions;
1004 self.handle_with_uri("selection_range", &uri, |content| {
1005 self.handle_selection_range(content, &positions)
1006 })
1007 }
1008
1009 async fn semantic_tokens_full(
1010 &self,

Callers

nothing calls this directly

Calls 2

handle_with_uriMethod · 0.80

Tested by

no test coverage detected