diff --git a/src/dcd/common/messages.d b/src/dcd/common/messages.d index 8453d7b..1bda554 100644 --- a/src/dcd/common/messages.d +++ b/src/dcd/common/messages.d @@ -148,16 +148,6 @@ struct AutocompleteResponse * Documentation associated with this symbol. */ string documentation; - - deprecated("Use identifier (or definition for calltips) instead") string compatibilityContent() const nothrow - { - if (kind == ubyte.init) - return definition; - else - return identifier; - } - - alias compatibilityContent this; } /** @@ -190,30 +180,6 @@ struct AutocompleteResponse */ ulong symbolIdentifier; - deprecated("use completions[].documentation + escapeConsoleOutputString instead") string[] docComments() @property - { - string[] ret; - foreach (ref completion; completions) - ret ~= completion.documentation.escapeConsoleOutputString(true); - return ret; - } - - deprecated("use completions[].kind instead") char[] completionKinds() @property - { - char[] ret; - foreach (ref completion; completions) - ret ~= completion.kind; - return ret; - } - - deprecated("use completions[].symbolLocation instead") size_t[] locations() @property - { - size_t[] ret; - foreach (ref completion; completions) - ret ~= completion.symbolLocation; - return ret; - } - /** * Creates an empty acknowledgement response */