| 547 | } |
| 548 | |
| 549 | void Client::initRequest() |
| 550 | { |
| 551 | QString langQStr = QString::fromStdString(d->proKey.language); |
| 552 | QString workQStr = QString::fromStdString(d->proKey.workspace); |
| 553 | QString outputStr = QString::fromStdString(d->proKey.outputDirectory); |
| 554 | d->callMethod(lsp::V_INITIALIZE, lsp::initialize(workQStr, langQStr, outputStr)); |
| 555 | } |
| 556 | |
| 557 | void Client::openRequest(const QString &filePath) |
| 558 | { |
nothing calls this directly
no test coverage detected