2017-03-25 23:58:11 +00:00
|
|
|
#include "ipc.h"
|
|
|
|
|
2018-03-22 04:05:25 +00:00
|
|
|
const char* kMethodType_Unknown = "$unknown";
|
|
|
|
const char* kMethodType_Exit = "exit";
|
|
|
|
const char* kMethodType_TextDocumentPublishDiagnostics = "textDocument/publishDiagnostics";
|
|
|
|
const char* kMethodType_CqueryPublishInactiveRegions = "$cquery/publishInactiveRegions";
|
|
|
|
const char* kMethodType_CqueryPublishSemanticHighlighting = "$cquery/publishSemanticHighlighting";
|
2017-06-09 06:20:29 +00:00
|
|
|
|
2017-12-25 13:08:36 +00:00
|
|
|
BaseIpcMessage::~BaseIpcMessage() = default;
|
2018-01-19 18:00:06 +00:00
|
|
|
|
|
|
|
lsRequestId BaseIpcMessage::GetRequestId() {
|
|
|
|
return std::monostate();
|
|
|
|
}
|