diff options
Diffstat (limited to 'graphics/asymptote/LspCpp/include/LibLsp/lsp/extention/jdtls/findLinks.h')
-rw-r--r-- | graphics/asymptote/LspCpp/include/LibLsp/lsp/extention/jdtls/findLinks.h | 18 |
1 files changed, 8 insertions, 10 deletions
diff --git a/graphics/asymptote/LspCpp/include/LibLsp/lsp/extention/jdtls/findLinks.h b/graphics/asymptote/LspCpp/include/LibLsp/lsp/extention/jdtls/findLinks.h index fd470b17c8..413fe1bded 100644 --- a/graphics/asymptote/LspCpp/include/LibLsp/lsp/extention/jdtls/findLinks.h +++ b/graphics/asymptote/LspCpp/include/LibLsp/lsp/extention/jdtls/findLinks.h @@ -7,16 +7,14 @@ #include "getRefactorEdit.h" #include "LibLsp/lsp/lsTextDocumentPositionParams.h" -struct FindLinksParams { - // Supported link types: superImplementation - std::string type; - lsTextDocumentPositionParams position; +struct FindLinksParams +{ + // Supported link types: superImplementation + std::string type; + lsTextDocumentPositionParams position; - MAKE_SWAP_METHOD(FindLinksParams, type, position) + MAKE_SWAP_METHOD(FindLinksParams, type, position) }; -MAKE_REFLECT_STRUCT(FindLinksParams,type,position) - -DEFINE_REQUEST_RESPONSE_TYPE(java_findLinks, FindLinksParams,lsp::Any, "java/findLinks"); - - +MAKE_REFLECT_STRUCT(FindLinksParams, type, position) +DEFINE_REQUEST_RESPONSE_TYPE(java_findLinks, FindLinksParams, lsp::Any, "java/findLinks"); |