@@ -88,50 +88,65 @@ namespace ts.server {
8888
8989 export namespace CommandNames {
9090 export const Brace : protocol . CommandTypes . Brace = "brace" ;
91+ /* @internal */
9192 export const BraceFull : protocol . CommandTypes . BraceFull = "brace-full" ;
9293 export const BraceCompletion : protocol . CommandTypes . BraceCompletion = "braceCompletion" ;
9394 export const Change : protocol . CommandTypes . Change = "change" ;
9495 export const Close : protocol . CommandTypes . Close = "close" ;
9596 export const Completions : protocol . CommandTypes . Completions = "completions" ;
97+ /* @internal */
9698 export const CompletionsFull : protocol . CommandTypes . CompletionsFull = "completions-full" ;
9799 export const CompletionDetails : protocol . CommandTypes . CompletionDetails = "completionEntryDetails" ;
98100 export const CompileOnSaveAffectedFileList : protocol . CommandTypes . CompileOnSaveAffectedFileList = "compileOnSaveAffectedFileList" ;
99101 export const CompileOnSaveEmitFile : protocol . CommandTypes . CompileOnSaveEmitFile = "compileOnSaveEmitFile" ;
100102 export const Configure : protocol . CommandTypes . Configure = "configure" ;
101103 export const Definition : protocol . CommandTypes . Definition = "definition" ;
104+ /* @internal */
102105 export const DefinitionFull : protocol . CommandTypes . DefinitionFull = "definition-full" ;
103106 export const Exit : protocol . CommandTypes . Exit = "exit" ;
104107 export const Format : protocol . CommandTypes . Format = "format" ;
105108 export const Formatonkey : protocol . CommandTypes . Formatonkey = "formatonkey" ;
109+ /* @internal */
106110 export const FormatFull : protocol . CommandTypes . FormatFull = "format-full" ;
111+ /* @internal */
107112 export const FormatonkeyFull : protocol . CommandTypes . FormatonkeyFull = "formatonkey-full" ;
113+ /* @internal */
108114 export const FormatRangeFull : protocol . CommandTypes . FormatRangeFull = "formatRange-full" ;
109115 export const Geterr : protocol . CommandTypes . Geterr = "geterr" ;
110116 export const GeterrForProject : protocol . CommandTypes . GeterrForProject = "geterrForProject" ;
111117 export const Implementation : protocol . CommandTypes . Implementation = "implementation" ;
118+ /* @internal */
112119 export const ImplementationFull : protocol . CommandTypes . ImplementationFull = "implementation-full" ;
113120 export const SemanticDiagnosticsSync : protocol . CommandTypes . SemanticDiagnosticsSync = "semanticDiagnosticsSync" ;
114121 export const SyntacticDiagnosticsSync : protocol . CommandTypes . SyntacticDiagnosticsSync = "syntacticDiagnosticsSync" ;
115122 export const NavBar : protocol . CommandTypes . NavBar = "navbar" ;
123+ /* @internal */
116124 export const NavBarFull : protocol . CommandTypes . NavBarFull = "navbar-full" ;
117125 export const NavTree : protocol . CommandTypes . NavTree = "navtree" ;
118126 export const NavTreeFull : protocol . CommandTypes . NavTreeFull = "navtree-full" ;
119127 export const Navto : protocol . CommandTypes . Navto = "navto" ;
128+ /* @internal */
120129 export const NavtoFull : protocol . CommandTypes . NavtoFull = "navto-full" ;
121130 export const Occurrences : protocol . CommandTypes . Occurrences = "occurrences" ;
122131 export const DocumentHighlights : protocol . CommandTypes . DocumentHighlights = "documentHighlights" ;
132+ /* @internal */
123133 export const DocumentHighlightsFull : protocol . CommandTypes . DocumentHighlightsFull = "documentHighlights-full" ;
124134 export const Open : protocol . CommandTypes . Open = "open" ;
125135 export const Quickinfo : protocol . CommandTypes . Quickinfo = "quickinfo" ;
136+ /* @internal */
126137 export const QuickinfoFull : protocol . CommandTypes . QuickinfoFull = "quickinfo-full" ;
127138 export const References : protocol . CommandTypes . References = "references" ;
139+ /* @internal */
128140 export const ReferencesFull : protocol . CommandTypes . ReferencesFull = "references-full" ;
129141 export const Reload : protocol . CommandTypes . Reload = "reload" ;
130142 export const Rename : protocol . CommandTypes . Rename = "rename" ;
143+ /* @internal */
131144 export const RenameInfoFull : protocol . CommandTypes . RenameInfoFull = "rename-full" ;
145+ /* @internal */
132146 export const RenameLocationsFull : protocol . CommandTypes . RenameLocationsFull = "renameLocations-full" ;
133147 export const Saveto : protocol . CommandTypes . Saveto = "saveto" ;
134148 export const SignatureHelp : protocol . CommandTypes . SignatureHelp = "signatureHelp" ;
149+ /* @internal */
135150 export const SignatureHelpFull : protocol . CommandTypes . SignatureHelpFull = "signatureHelp-full" ;
136151 export const TypeDefinition : protocol . CommandTypes . TypeDefinition = "typeDefinition" ;
137152 export const ProjectInfo : protocol . CommandTypes . ProjectInfo = "projectInfo" ;
@@ -140,19 +155,28 @@ namespace ts.server {
140155 export const OpenExternalProject : protocol . CommandTypes . OpenExternalProject = "openExternalProject" ;
141156 export const OpenExternalProjects : protocol . CommandTypes . OpenExternalProjects = "openExternalProjects" ;
142157 export const CloseExternalProject : protocol . CommandTypes . CloseExternalProject = "closeExternalProject" ;
158+ /* @internal */
143159 export const SynchronizeProjectList : protocol . CommandTypes . SynchronizeProjectList = "synchronizeProjectList" ;
160+ /* @internal */
144161 export const ApplyChangedToOpenFiles : protocol . CommandTypes . ApplyChangedToOpenFiles = "applyChangedToOpenFiles" ;
162+ /* @internal */
145163 export const EncodedSemanticClassificationsFull : protocol . CommandTypes . EncodedSemanticClassificationsFull = "encodedSemanticClassifications-full" ;
164+ /* @internal */
146165 export const Cleanup : protocol . CommandTypes . Cleanup = "cleanup" ;
166+ /* @internal */
147167 export const OutliningSpans : protocol . CommandTypes . OutliningSpans = "outliningSpans" ;
148168 export const TodoComments : protocol . CommandTypes . TodoComments = "todoComments" ;
149169 export const Indentation : protocol . CommandTypes . Indentation = "indentation" ;
150170 export const DocCommentTemplate : protocol . CommandTypes . DocCommentTemplate = "docCommentTemplate" ;
171+ /* @internal */
151172 export const CompilerOptionsDiagnosticsFull : protocol . CommandTypes . CompilerOptionsDiagnosticsFull = "compilerOptionsDiagnostics-full" ;
173+ /* @internal */
152174 export const NameOrDottedNameSpan : protocol . CommandTypes . NameOrDottedNameSpan = "nameOrDottedNameSpan" ;
175+ /* @internal */
153176 export const BreakpointStatement : protocol . CommandTypes . BreakpointStatement = "breakpointStatement" ;
154177 export const CompilerOptionsForInferredProjects : protocol . CommandTypes . CompilerOptionsForInferredProjects = "compilerOptionsForInferredProjects" ;
155178 export const GetCodeFixes : protocol . CommandTypes . GetCodeFixes = "getCodeFixes" ;
179+ /* @internal */
156180 export const GetCodeFixesFull : protocol . CommandTypes . GetCodeFixesFull = "getCodeFixes-full" ;
157181 export const GetSupportedCodeFixes : protocol . CommandTypes . GetSupportedCodeFixes = "getSupportedCodeFixes" ;
158182 }
0 commit comments