| 455 | } |
| 456 | |
| 457 | void Client::rangeFormatting(const QString &filePath, const DocumentRangeFormattingParams ¶ms) |
| 458 | { |
| 459 | qInfo() << QString::fromStdString(toJsonValueStr(params)); |
| 460 | d->callMethod(lsp::V_TEXTDOCUMENT_RANGEFORMATTING, |
| 461 | QJsonDocument::fromJson( |
| 462 | QByteArray::fromStdString(toJsonValueStr(params))) |
| 463 | .object(), |
| 464 | filePath); |
| 465 | } |
| 466 | |
| 467 | void Client::onTypeFormatting(const DocumentOnTypeFormattingParams ¶ms) |
| 468 | { |
no test coverage detected