diff options
Diffstat (limited to 'Build/source/utils/asymptote/LspCpp/LibLsp/lsp/lsTextDocumentEdit.h')
-rw-r--r-- | Build/source/utils/asymptote/LspCpp/LibLsp/lsp/lsTextDocumentEdit.h | 24 |
1 files changed, 0 insertions, 24 deletions
diff --git a/Build/source/utils/asymptote/LspCpp/LibLsp/lsp/lsTextDocumentEdit.h b/Build/source/utils/asymptote/LspCpp/LibLsp/lsp/lsTextDocumentEdit.h deleted file mode 100644 index 0bab8bc3d8d..00000000000 --- a/Build/source/utils/asymptote/LspCpp/LibLsp/lsp/lsTextDocumentEdit.h +++ /dev/null @@ -1,24 +0,0 @@ -#pragma once - -#include "LibLsp/JsonRpc/serializer.h" -#include <vector> -#include "LibLsp/JsonRpc/message.h" -#include "lsVersionedTextDocumentIdentifier.h" -#include "lsTextEdit.h" - - -struct lsTextDocumentEdit { - // The text document to change. - lsVersionedTextDocumentIdentifier textDocument; - - /** - * The edits to be applied. - * - * @since 3.16.0 - support for AnnotatedTextEdit. This is guarded by the - * client capability `workspace.workspaceEdit.changeAnnotationSupport` - */ - // The edits to be applied. - std::vector< lsAnnotatedTextEdit > edits; - MAKE_SWAP_METHOD(lsTextDocumentEdit, textDocument, edits); -}; -MAKE_REFLECT_STRUCT(lsTextDocumentEdit, textDocument, edits);
\ No newline at end of file |