mirror of
https://github.com/MaskRay/ccls.git
synced 2024-11-22 07:35:08 +00:00
22 lines
495 B
C++
22 lines
495 B
C++
#pragma once
|
|
|
|
#include "lsp.h"
|
|
|
|
// codeAction
|
|
struct CommandArgs {
|
|
lsDocumentUri textDocumentUri;
|
|
std::vector<lsTextEdit> edits;
|
|
};
|
|
MAKE_REFLECT_STRUCT_WRITER_AS_ARRAY(CommandArgs, textDocumentUri, edits);
|
|
|
|
// codeLens
|
|
struct lsCodeLensUserData {};
|
|
MAKE_REFLECT_EMPTY_STRUCT(lsCodeLensUserData);
|
|
|
|
struct lsCodeLensCommandArguments {
|
|
lsDocumentUri uri;
|
|
lsPosition position;
|
|
std::vector<lsLocation> locations;
|
|
};
|
|
MAKE_REFLECT_STRUCT(lsCodeLensCommandArguments, uri, position, locations)
|