| 129 | } |
| 130 | |
| 131 | std::shared_ptr<lsp::Serializable> LSPHandle::OnDidOpen( |
| 132 | std::shared_ptr<lsp::DidOpenTextDocumentParams> params) { |
| 133 | _server->GetVFS().UpdateFile(params->textDocument.uri, std::move(params->textDocument.text)); |
| 134 | return nullptr; |
| 135 | } |
| 136 | |
| 137 | std::shared_ptr<lsp::Serializable> LSPHandle::OnFormatting( |
| 138 | std::shared_ptr<lsp::DocumentFormattingParams> params) { |
nothing calls this directly
no test coverage detected