| 447 | } |
| 448 | |
| 449 | void Client::formatting(const DocumentFormattingParams ¶ms) |
| 450 | { |
| 451 | d->callMethod(lsp::V_TEXTDOCUMENT_FORMATTING, |
| 452 | QJsonDocument::fromJson( |
| 453 | QByteArray::fromStdString(toJsonValueStr(params))) |
| 454 | .object()); |
| 455 | } |
| 456 | |
| 457 | void Client::rangeFormatting(const QString &filePath, const DocumentRangeFormattingParams ¶ms) |
| 458 | { |
nothing calls this directly
no test coverage detected