| 635 | } |
| 636 | |
| 637 | void ClientPrivate::callMethod(const QString &method, const QJsonObject ¶ms, const QString &filePath) |
| 638 | { |
| 639 | requestIndex++; |
| 640 | requestSave.insert(requestIndex, { method, filePath }); |
| 641 | writeLspData(newlsp::methodData(requestIndex, method, params).toUtf8()); |
| 642 | } |
| 643 | |
| 644 | void ClientPrivate::callNotification(const QString &method, const QJsonObject ¶ms) |
| 645 | { |
no test coverage detected