(&self, params: FoldingRangeParams)
| 975 | } |
| 976 | |
| 977 | async fn folding_range(&self, params: FoldingRangeParams) -> Result<Option<Vec<FoldingRange>>> { |
| 978 | let uri = params.text_document.uri.to_string(); |
| 979 | self.handle_with_uri("folding_range", &uri, |content| { |
| 980 | self.handle_folding_range(content) |
| 981 | }) |
| 982 | } |
| 983 | |
| 984 | async fn code_lens(&self, params: CodeLensParams) -> Result<Option<Vec<CodeLens>>> { |
| 985 | let uri = params.text_document.uri.to_string(); |
nothing calls this directly
no test coverage detected