1//===--- Protocol.h - Language Server Protocol Implementation ---*- C++ -*-===//
2//
3// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4// See https://llvm.org/LICENSE.txt for license information.
5// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6//
7//===----------------------------------------------------------------------===//
8//
9// This file contains structs based on the LSP specification at
10// https://github.com/Microsoft/language-server-protocol/blob/main/protocol.md
11//
12// This is not meant to be a complete implementation, new interfaces are added
13// when they're needed.
14//
15// Each struct has a toJSON and fromJSON function, that converts between
16// the struct and a JSON representation. (See JSON.h)
17//
18// Some structs also have operator<< serialization. This is for debugging and
19// tests, and is not generally machine-readable.
20//
21//===----------------------------------------------------------------------===//
22
23#ifndef LLVM_CLANG_TOOLS_EXTRA_CLANGD_PROTOCOL_H
24#define LLVM_CLANG_TOOLS_EXTRA_CLANGD_PROTOCOL_H
25
26#include "URI.h"
27#include "index/SymbolID.h"
28#include "support/MemoryTree.h"
29#include "clang/Index/IndexSymbol.h"
30#include "llvm/ADT/SmallVector.h"
31#include "llvm/Support/JSON.h"
32#include "llvm/Support/raw_ostream.h"
33#include <bitset>
34#include <memory>
35#include <optional>
36#include <string>
37#include <vector>
38
39// This file is using the LSP syntax for identifier names which is different
40// from the LLVM coding standard. To avoid the clang-tidy warnings, we're
41// disabling one check here.
42// NOLINTBEGIN(readability-identifier-naming)
43
44namespace clang {
45namespace clangd {
46
47enum class ErrorCode {
48 // Defined by JSON RPC.
49 ParseError = -32700,
50 InvalidRequest = -32600,
51 MethodNotFound = -32601,
52 InvalidParams = -32602,
53 InternalError = -32603,
54
55 ServerNotInitialized = -32002,
56 UnknownErrorCode = -32001,
57
58 // Defined by the protocol.
59 RequestCancelled = -32800,
60 ContentModified = -32801,
61};
62// Models an LSP error as an llvm::Error.
63class LSPError : public llvm::ErrorInfo<LSPError> {
64public:
65 std::string Message;
66 ErrorCode Code;
67 static char ID;
68
69 LSPError(std::string Message, ErrorCode Code)
70 : Message(std::move(Message)), Code(Code) {}
71
72 void log(llvm::raw_ostream &OS) const override {
73 OS << int(Code) << ": " << Message;
74 }
75 std::error_code convertToErrorCode() const override {
76 return llvm::inconvertibleErrorCode();
77 }
78};
79
80bool fromJSON(const llvm::json::Value &, SymbolID &, llvm::json::Path);
81llvm::json::Value toJSON(const SymbolID &);
82
83// URI in "file" scheme for a file.
84struct URIForFile {
85 URIForFile() = default;
86
87 /// Canonicalizes \p AbsPath via URI.
88 ///
89 /// File paths in URIForFile can come from index or local AST. Path from
90 /// index goes through URI transformation, and the final path is resolved by
91 /// URI scheme and could potentially be different from the original path.
92 /// Hence, we do the same transformation for all paths.
93 ///
94 /// Files can be referred to by several paths (e.g. in the presence of links).
95 /// Which one we prefer may depend on where we're coming from. \p TUPath is a
96 /// hint, and should usually be the main entrypoint file we're processing.
97 static URIForFile canonicalize(llvm::StringRef AbsPath,
98 llvm::StringRef TUPath);
99
100 static llvm::Expected<URIForFile> fromURI(const URI &U,
101 llvm::StringRef HintPath);
102
103 /// Retrieves absolute path to the file.
104 llvm::StringRef file() const { return File; }
105
106 explicit operator bool() const { return !File.empty(); }
107 std::string uri() const { return URI::createFile(AbsolutePath: File).toString(); }
108
109 friend bool operator==(const URIForFile &LHS, const URIForFile &RHS) {
110 return LHS.File == RHS.File;
111 }
112
113 friend bool operator!=(const URIForFile &LHS, const URIForFile &RHS) {
114 return !(LHS == RHS);
115 }
116
117 friend bool operator<(const URIForFile &LHS, const URIForFile &RHS) {
118 return LHS.File < RHS.File;
119 }
120
121private:
122 explicit URIForFile(std::string &&File) : File(std::move(File)) {}
123
124 std::string File;
125};
126
127/// Serialize/deserialize \p URIForFile to/from a string URI.
128llvm::json::Value toJSON(const URIForFile &U);
129bool fromJSON(const llvm::json::Value &, URIForFile &, llvm::json::Path);
130
131struct TextDocumentIdentifier {
132 /// The text document's URI.
133 URIForFile uri;
134};
135llvm::json::Value toJSON(const TextDocumentIdentifier &);
136bool fromJSON(const llvm::json::Value &, TextDocumentIdentifier &,
137 llvm::json::Path);
138
139struct VersionedTextDocumentIdentifier : public TextDocumentIdentifier {
140 /// The version number of this document. If a versioned text document
141 /// identifier is sent from the server to the client and the file is not open
142 /// in the editor (the server has not received an open notification before)
143 /// the server can send `null` to indicate that the version is known and the
144 /// content on disk is the master (as speced with document content ownership).
145 ///
146 /// The version number of a document will increase after each change,
147 /// including undo/redo. The number doesn't need to be consecutive.
148 ///
149 /// clangd extension: versions are optional, and synthesized if missing.
150 std::optional<std::int64_t> version;
151};
152llvm::json::Value toJSON(const VersionedTextDocumentIdentifier &);
153bool fromJSON(const llvm::json::Value &, VersionedTextDocumentIdentifier &,
154 llvm::json::Path);
155
156struct Position {
157 /// Line position in a document (zero-based).
158 int line = 0;
159
160 /// Character offset on a line in a document (zero-based).
161 /// WARNING: this is in UTF-16 codepoints, not bytes or characters!
162 /// Use the functions in SourceCode.h to construct/interpret Positions.
163 int character = 0;
164
165 friend bool operator==(const Position &LHS, const Position &RHS) {
166 return std::tie(args: LHS.line, args: LHS.character) ==
167 std::tie(args: RHS.line, args: RHS.character);
168 }
169 friend bool operator!=(const Position &LHS, const Position &RHS) {
170 return !(LHS == RHS);
171 }
172 friend bool operator<(const Position &LHS, const Position &RHS) {
173 return std::tie(args: LHS.line, args: LHS.character) <
174 std::tie(args: RHS.line, args: RHS.character);
175 }
176 friend bool operator<=(const Position &LHS, const Position &RHS) {
177 return std::tie(args: LHS.line, args: LHS.character) <=
178 std::tie(args: RHS.line, args: RHS.character);
179 }
180};
181bool fromJSON(const llvm::json::Value &, Position &, llvm::json::Path);
182llvm::json::Value toJSON(const Position &);
183llvm::raw_ostream &operator<<(llvm::raw_ostream &, const Position &);
184
185struct Range {
186 /// The range's start position.
187 Position start;
188
189 /// The range's end position.
190 Position end;
191
192 friend bool operator==(const Range &LHS, const Range &RHS) {
193 return std::tie(args: LHS.start, args: LHS.end) == std::tie(args: RHS.start, args: RHS.end);
194 }
195 friend bool operator!=(const Range &LHS, const Range &RHS) {
196 return !(LHS == RHS);
197 }
198 friend bool operator<(const Range &LHS, const Range &RHS) {
199 return std::tie(args: LHS.start, args: LHS.end) < std::tie(args: RHS.start, args: RHS.end);
200 }
201
202 bool contains(Position Pos) const { return start <= Pos && Pos < end; }
203 bool contains(Range Rng) const {
204 return start <= Rng.start && Rng.end <= end;
205 }
206};
207bool fromJSON(const llvm::json::Value &, Range &, llvm::json::Path);
208llvm::json::Value toJSON(const Range &);
209llvm::raw_ostream &operator<<(llvm::raw_ostream &, const Range &);
210
211struct Location {
212 /// The text document's URI.
213 URIForFile uri;
214 Range range;
215
216 friend bool operator==(const Location &LHS, const Location &RHS) {
217 return LHS.uri == RHS.uri && LHS.range == RHS.range;
218 }
219
220 friend bool operator!=(const Location &LHS, const Location &RHS) {
221 return !(LHS == RHS);
222 }
223
224 friend bool operator<(const Location &LHS, const Location &RHS) {
225 return std::tie(args: LHS.uri, args: LHS.range) < std::tie(args: RHS.uri, args: RHS.range);
226 }
227};
228llvm::json::Value toJSON(const Location &);
229llvm::raw_ostream &operator<<(llvm::raw_ostream &, const Location &);
230
231/// Extends Locations returned by textDocument/references with extra info.
232/// This is a clangd extension: LSP uses `Location`.
233struct ReferenceLocation : Location {
234 /// clangd extension: contains the name of the function or class in which the
235 /// reference occurs
236 std::optional<std::string> containerName;
237};
238llvm::json::Value toJSON(const ReferenceLocation &);
239llvm::raw_ostream &operator<<(llvm::raw_ostream &, const ReferenceLocation &);
240
241using ChangeAnnotationIdentifier = std::string;
242// A combination of a LSP standard TextEdit and AnnotatedTextEdit.
243struct TextEdit {
244 /// The range of the text document to be manipulated. To insert
245 /// text into a document create a range where start === end.
246 Range range;
247
248 /// The string to be inserted. For delete operations use an
249 /// empty string.
250 std::string newText;
251
252 /// The actual annotation identifier (optional)
253 /// If empty, then this field is nullopt.
254 ChangeAnnotationIdentifier annotationId = "";
255};
256inline bool operator==(const TextEdit &L, const TextEdit &R) {
257 return std::tie(args: L.newText, args: L.range, args: L.annotationId) ==
258 std::tie(args: R.newText, args: R.range, args: L.annotationId);
259}
260bool fromJSON(const llvm::json::Value &, TextEdit &, llvm::json::Path);
261llvm::json::Value toJSON(const TextEdit &);
262llvm::raw_ostream &operator<<(llvm::raw_ostream &, const TextEdit &);
263
264struct ChangeAnnotation {
265 /// A human-readable string describing the actual change. The string
266 /// is rendered prominent in the user interface.
267 std::string label;
268
269 /// A flag which indicates that user confirmation is needed
270 /// before applying the change.
271 std::optional<bool> needsConfirmation;
272
273 /// A human-readable string which is rendered less prominent in
274 /// the user interface.
275 std::string description;
276};
277bool fromJSON(const llvm::json::Value &, ChangeAnnotation &, llvm::json::Path);
278llvm::json::Value toJSON(const ChangeAnnotation &);
279
280struct TextDocumentEdit {
281 /// The text document to change.
282 VersionedTextDocumentIdentifier textDocument;
283
284 /// The edits to be applied.
285 /// FIXME: support the AnnotatedTextEdit variant.
286 std::vector<TextEdit> edits;
287};
288bool fromJSON(const llvm::json::Value &, TextDocumentEdit &, llvm::json::Path);
289llvm::json::Value toJSON(const TextDocumentEdit &);
290
291struct TextDocumentItem {
292 /// The text document's URI.
293 URIForFile uri;
294
295 /// The text document's language identifier.
296 std::string languageId;
297
298 /// The version number of this document (it will strictly increase after each
299 /// change, including undo/redo.
300 ///
301 /// clangd extension: versions are optional, and synthesized if missing.
302 std::optional<int64_t> version;
303
304 /// The content of the opened text document.
305 std::string text;
306};
307bool fromJSON(const llvm::json::Value &, TextDocumentItem &, llvm::json::Path);
308
309enum class TraceLevel {
310 Off = 0,
311 Messages = 1,
312 Verbose = 2,
313};
314bool fromJSON(const llvm::json::Value &E, TraceLevel &Out, llvm::json::Path);
315
316struct NoParams {};
317inline llvm::json::Value toJSON(const NoParams &) { return nullptr; }
318inline bool fromJSON(const llvm::json::Value &, NoParams &, llvm::json::Path) {
319 return true;
320}
321using InitializedParams = NoParams;
322
323/// Defines how the host (editor) should sync document changes to the language
324/// server.
325enum class TextDocumentSyncKind {
326 /// Documents should not be synced at all.
327 None = 0,
328
329 /// Documents are synced by always sending the full content of the document.
330 Full = 1,
331
332 /// Documents are synced by sending the full content on open. After that
333 /// only incremental updates to the document are send.
334 Incremental = 2,
335};
336
337/// The kind of a completion entry.
338enum class CompletionItemKind {
339 Missing = 0,
340 Text = 1,
341 Method = 2,
342 Function = 3,
343 Constructor = 4,
344 Field = 5,
345 Variable = 6,
346 Class = 7,
347 Interface = 8,
348 Module = 9,
349 Property = 10,
350 Unit = 11,
351 Value = 12,
352 Enum = 13,
353 Keyword = 14,
354 Snippet = 15,
355 Color = 16,
356 File = 17,
357 Reference = 18,
358 Folder = 19,
359 EnumMember = 20,
360 Constant = 21,
361 Struct = 22,
362 Event = 23,
363 Operator = 24,
364 TypeParameter = 25,
365};
366bool fromJSON(const llvm::json::Value &, CompletionItemKind &,
367 llvm::json::Path);
368constexpr auto CompletionItemKindMin =
369 static_cast<size_t>(CompletionItemKind::Text);
370constexpr auto CompletionItemKindMax =
371 static_cast<size_t>(CompletionItemKind::TypeParameter);
372using CompletionItemKindBitset = std::bitset<CompletionItemKindMax + 1>;
373bool fromJSON(const llvm::json::Value &, CompletionItemKindBitset &,
374 llvm::json::Path);
375CompletionItemKind
376adjustKindToCapability(CompletionItemKind Kind,
377 CompletionItemKindBitset &SupportedCompletionItemKinds);
378
379/// A symbol kind.
380enum class SymbolKind {
381 File = 1,
382 Module = 2,
383 Namespace = 3,
384 Package = 4,
385 Class = 5,
386 Method = 6,
387 Property = 7,
388 Field = 8,
389 Constructor = 9,
390 Enum = 10,
391 Interface = 11,
392 Function = 12,
393 Variable = 13,
394 Constant = 14,
395 String = 15,
396 Number = 16,
397 Boolean = 17,
398 Array = 18,
399 Object = 19,
400 Key = 20,
401 Null = 21,
402 EnumMember = 22,
403 Struct = 23,
404 Event = 24,
405 Operator = 25,
406 TypeParameter = 26
407};
408bool fromJSON(const llvm::json::Value &, SymbolKind &, llvm::json::Path);
409constexpr auto SymbolKindMin = static_cast<size_t>(SymbolKind::File);
410constexpr auto SymbolKindMax = static_cast<size_t>(SymbolKind::TypeParameter);
411using SymbolKindBitset = std::bitset<SymbolKindMax + 1>;
412bool fromJSON(const llvm::json::Value &, SymbolKindBitset &, llvm::json::Path);
413SymbolKind adjustKindToCapability(SymbolKind Kind,
414 SymbolKindBitset &supportedSymbolKinds);
415
416// Convert a index::SymbolKind to clangd::SymbolKind (LSP)
417// Note, some are not perfect matches and should be improved when this LSP
418// issue is addressed:
419// https://github.com/Microsoft/language-server-protocol/issues/344
420SymbolKind indexSymbolKindToSymbolKind(index::SymbolKind Kind);
421
422// Determines the encoding used to measure offsets and lengths of source in LSP.
423enum class OffsetEncoding {
424 // Any string is legal on the wire. Unrecognized encodings parse as this.
425 UnsupportedEncoding,
426 // Length counts code units of UTF-16 encoded text. (Standard LSP behavior).
427 UTF16,
428 // Length counts bytes of UTF-8 encoded text. (Clangd extension).
429 UTF8,
430 // Length counts codepoints in unicode text. (Clangd extension).
431 UTF32,
432};
433llvm::json::Value toJSON(const OffsetEncoding &);
434bool fromJSON(const llvm::json::Value &, OffsetEncoding &, llvm::json::Path);
435llvm::raw_ostream &operator<<(llvm::raw_ostream &, OffsetEncoding);
436
437// Describes the content type that a client supports in various result literals
438// like `Hover`, `ParameterInfo` or `CompletionItem`.
439enum class MarkupKind {
440 PlainText,
441 Markdown,
442};
443bool fromJSON(const llvm::json::Value &, MarkupKind &, llvm::json::Path);
444llvm::raw_ostream &operator<<(llvm::raw_ostream &OS, MarkupKind);
445
446// This struct doesn't mirror LSP!
447// The protocol defines deeply nested structures for client capabilities.
448// Instead of mapping them all, this just parses out the bits we care about.
449struct ClientCapabilities {
450 /// The supported set of SymbolKinds for workspace/symbol.
451 /// workspace.symbol.symbolKind.valueSet
452 std::optional<SymbolKindBitset> WorkspaceSymbolKinds;
453
454 /// Whether the client accepts diagnostics with codeActions attached inline.
455 /// textDocument.publishDiagnostics.codeActionsInline.
456 bool DiagnosticFixes = false;
457
458 /// Whether the client accepts diagnostics with related locations.
459 /// textDocument.publishDiagnostics.relatedInformation.
460 bool DiagnosticRelatedInformation = false;
461
462 /// Whether the client accepts diagnostics with category attached to it
463 /// using the "category" extension.
464 /// textDocument.publishDiagnostics.categorySupport
465 bool DiagnosticCategory = false;
466
467 /// Client supports snippets as insert text.
468 /// textDocument.completion.completionItem.snippetSupport
469 bool CompletionSnippets = false;
470
471 /// Client supports completions with additionalTextEdit near the cursor.
472 /// This is a clangd extension. (LSP says this is for unrelated text only).
473 /// textDocument.completion.editsNearCursor
474 bool CompletionFixes = false;
475
476 /// Client supports displaying a container string for results of
477 /// textDocument/reference (clangd extension)
478 bool ReferenceContainer = false;
479
480 /// Client supports hierarchical document symbols.
481 /// textDocument.documentSymbol.hierarchicalDocumentSymbolSupport
482 bool HierarchicalDocumentSymbol = false;
483
484 /// Client supports signature help.
485 /// textDocument.signatureHelp
486 bool HasSignatureHelp = false;
487
488 /// Client signals that it only supports folding complete lines.
489 /// Client will ignore specified `startCharacter` and `endCharacter`
490 /// properties in a FoldingRange.
491 /// textDocument.foldingRange.lineFoldingOnly
492 bool LineFoldingOnly = false;
493
494 /// Client supports processing label offsets instead of a simple label string.
495 /// textDocument.signatureHelp.signatureInformation.parameterInformation.labelOffsetSupport
496 bool OffsetsInSignatureHelp = false;
497
498 /// The documentation format that should be used for
499 /// textDocument/signatureHelp.
500 /// textDocument.signatureHelp.signatureInformation.documentationFormat
501 MarkupKind SignatureHelpDocumentationFormat = MarkupKind::PlainText;
502
503 /// The supported set of CompletionItemKinds for textDocument/completion.
504 /// textDocument.completion.completionItemKind.valueSet
505 std::optional<CompletionItemKindBitset> CompletionItemKinds;
506
507 /// The documentation format that should be used for textDocument/completion.
508 /// textDocument.completion.completionItem.documentationFormat
509 MarkupKind CompletionDocumentationFormat = MarkupKind::PlainText;
510
511 /// The client has support for completion item label details.
512 /// textDocument.completion.completionItem.labelDetailsSupport.
513 bool CompletionLabelDetail = false;
514
515 /// Client supports CodeAction return value for textDocument/codeAction.
516 /// textDocument.codeAction.codeActionLiteralSupport.
517 bool CodeActionStructure = false;
518
519 /// Client advertises support for the semanticTokens feature.
520 /// We support the textDocument/semanticTokens request in any case.
521 /// textDocument.semanticTokens
522 bool SemanticTokens = false;
523 /// Client supports Theia semantic highlighting extension.
524 /// https://github.com/microsoft/vscode-languageserver-node/pull/367
525 /// clangd no longer supports this, we detect it just to log a warning.
526 /// textDocument.semanticHighlightingCapabilities.semanticHighlighting
527 bool TheiaSemanticHighlighting = false;
528
529 /// Supported encodings for LSP character offsets. (clangd extension).
530 std::optional<std::vector<OffsetEncoding>> offsetEncoding;
531
532 /// The content format that should be used for Hover requests.
533 /// textDocument.hover.contentEncoding
534 MarkupKind HoverContentFormat = MarkupKind::PlainText;
535
536 /// The client supports testing for validity of rename operations
537 /// before execution.
538 bool RenamePrepareSupport = false;
539
540 /// The client supports progress notifications.
541 /// window.workDoneProgress
542 bool WorkDoneProgress = false;
543
544 /// The client supports implicit $/progress work-done progress streams,
545 /// without a preceding window/workDoneProgress/create.
546 /// This is a clangd extension.
547 /// window.implicitWorkDoneProgressCreate
548 bool ImplicitProgressCreation = false;
549
550 /// Whether the client claims to cancel stale requests.
551 /// general.staleRequestSupport.cancel
552 bool CancelsStaleRequests = false;
553
554 /// Whether the client implementation supports a refresh request sent from the
555 /// server to the client.
556 bool SemanticTokenRefreshSupport = false;
557
558 /// The client supports versioned document changes for WorkspaceEdit.
559 bool DocumentChanges = false;
560
561 /// The client supports change annotations on text edits,
562 bool ChangeAnnotation = false;
563
564 /// Whether the client supports the textDocument/inactiveRegions
565 /// notification. This is a clangd extension.
566 bool InactiveRegions = false;
567};
568bool fromJSON(const llvm::json::Value &, ClientCapabilities &,
569 llvm::json::Path);
570
571/// Clangd extension that's used in the 'compilationDatabaseChanges' in
572/// workspace/didChangeConfiguration to record updates to the in-memory
573/// compilation database.
574struct ClangdCompileCommand {
575 std::string workingDirectory;
576 std::vector<std::string> compilationCommand;
577};
578bool fromJSON(const llvm::json::Value &, ClangdCompileCommand &,
579 llvm::json::Path);
580
581/// Clangd extension: parameters configurable at any time, via the
582/// `workspace/didChangeConfiguration` notification.
583/// LSP defines this type as `any`.
584struct ConfigurationSettings {
585 // Changes to the in-memory compilation database.
586 // The key of the map is a file name.
587 std::map<std::string, ClangdCompileCommand> compilationDatabaseChanges;
588};
589bool fromJSON(const llvm::json::Value &, ConfigurationSettings &,
590 llvm::json::Path);
591
592/// Clangd extension: parameters configurable at `initialize` time.
593/// LSP defines this type as `any`.
594struct InitializationOptions {
595 // What we can change through the didChangeConfiguration request, we can
596 // also set through the initialize request (initializationOptions field).
597 ConfigurationSettings ConfigSettings;
598
599 std::optional<std::string> compilationDatabasePath;
600 // Additional flags to be included in the "fallback command" used when
601 // the compilation database doesn't describe an opened file.
602 // The command used will be approximately `clang $FILE $fallbackFlags`.
603 std::vector<std::string> fallbackFlags;
604
605 /// Clients supports show file status for textDocument/clangd.fileStatus.
606 bool FileStatus = false;
607};
608bool fromJSON(const llvm::json::Value &, InitializationOptions &,
609 llvm::json::Path);
610
611struct InitializeParams {
612 /// The process Id of the parent process that started
613 /// the server. Is null if the process has not been started by another
614 /// process. If the parent process is not alive then the server should exit
615 /// (see exit notification) its process.
616 std::optional<int> processId;
617
618 /// The rootPath of the workspace. Is null
619 /// if no folder is open.
620 ///
621 /// @deprecated in favour of rootUri.
622 std::optional<std::string> rootPath;
623
624 /// The rootUri of the workspace. Is null if no
625 /// folder is open. If both `rootPath` and `rootUri` are set
626 /// `rootUri` wins.
627 std::optional<URIForFile> rootUri;
628
629 // User provided initialization options.
630 // initializationOptions?: any;
631
632 /// The capabilities provided by the client (editor or tool)
633 ClientCapabilities capabilities;
634 /// The same data as capabilities, but not parsed (to expose to modules).
635 llvm::json::Object rawCapabilities;
636
637 /// The initial trace setting. If omitted trace is disabled ('off').
638 std::optional<TraceLevel> trace;
639
640 /// User-provided initialization options.
641 InitializationOptions initializationOptions;
642};
643bool fromJSON(const llvm::json::Value &, InitializeParams &, llvm::json::Path);
644
645struct WorkDoneProgressCreateParams {
646 /// The token to be used to report progress.
647 llvm::json::Value token = nullptr;
648};
649llvm::json::Value toJSON(const WorkDoneProgressCreateParams &P);
650
651template <typename T> struct ProgressParams {
652 /// The progress token provided by the client or server.
653 llvm::json::Value token = nullptr;
654
655 /// The progress data.
656 T value;
657};
658template <typename T> llvm::json::Value toJSON(const ProgressParams<T> &P) {
659 return llvm::json::Object{{"token", P.token}, {"value", P.value}};
660}
661/// To start progress reporting a $/progress notification with the following
662/// payload must be sent.
663struct WorkDoneProgressBegin {
664 /// Mandatory title of the progress operation. Used to briefly inform about
665 /// the kind of operation being performed.
666 ///
667 /// Examples: "Indexing" or "Linking dependencies".
668 std::string title;
669
670 /// Controls if a cancel button should show to allow the user to cancel the
671 /// long-running operation. Clients that don't support cancellation are
672 /// allowed to ignore the setting.
673 bool cancellable = false;
674
675 /// Optional progress percentage to display (value 100 is considered 100%).
676 /// If not provided infinite progress is assumed and clients are allowed
677 /// to ignore the `percentage` value in subsequent in report notifications.
678 ///
679 /// The value should be steadily rising. Clients are free to ignore values
680 /// that are not following this rule.
681 ///
682 /// Clangd implementation note: we only send nonzero percentages in
683 /// the WorkProgressReport. 'true' here means percentages will be used.
684 bool percentage = false;
685};
686llvm::json::Value toJSON(const WorkDoneProgressBegin &);
687
688/// Reporting progress is done using the following payload.
689struct WorkDoneProgressReport {
690 /// Mandatory title of the progress operation. Used to briefly inform about
691 /// the kind of operation being performed.
692 ///
693 /// Examples: "Indexing" or "Linking dependencies".
694 std::string title;
695
696 /// Controls enablement state of a cancel button. This property is only valid
697 /// if a cancel button got requested in the `WorkDoneProgressStart` payload.
698 ///
699 /// Clients that don't support cancellation or don't support control
700 /// the button's enablement state are allowed to ignore the setting.
701 std::optional<bool> cancellable;
702
703 /// Optional, more detailed associated progress message. Contains
704 /// complementary information to the `title`.
705 ///
706 /// Examples: "3/25 files", "project/src/module2", "node_modules/some_dep".
707 /// If unset, the previous progress message (if any) is still valid.
708 std::optional<std::string> message;
709
710 /// Optional progress percentage to display (value 100 is considered 100%).
711 /// If not provided infinite progress is assumed and clients are allowed
712 /// to ignore the `percentage` value in subsequent in report notifications.
713 ///
714 /// The value should be steadily rising. Clients are free to ignore values
715 /// that are not following this rule.
716 std::optional<unsigned> percentage;
717};
718llvm::json::Value toJSON(const WorkDoneProgressReport &);
719//
720/// Signals the end of progress reporting.
721struct WorkDoneProgressEnd {
722 /// Optional, a final message indicating to for example indicate the outcome
723 /// of the operation.
724 std::optional<std::string> message;
725};
726llvm::json::Value toJSON(const WorkDoneProgressEnd &);
727
728enum class MessageType {
729 /// An error message.
730 Error = 1,
731 /// A warning message.
732 Warning = 2,
733 /// An information message.
734 Info = 3,
735 /// A log message.
736 Log = 4,
737};
738llvm::json::Value toJSON(const MessageType &);
739
740/// The show message notification is sent from a server to a client to ask the
741/// client to display a particular message in the user interface.
742struct ShowMessageParams {
743 /// The message type.
744 MessageType type = MessageType::Info;
745 /// The actual message.
746 std::string message;
747};
748llvm::json::Value toJSON(const ShowMessageParams &);
749
750struct DidOpenTextDocumentParams {
751 /// The document that was opened.
752 TextDocumentItem textDocument;
753};
754bool fromJSON(const llvm::json::Value &, DidOpenTextDocumentParams &,
755 llvm::json::Path);
756
757struct DidCloseTextDocumentParams {
758 /// The document that was closed.
759 TextDocumentIdentifier textDocument;
760};
761bool fromJSON(const llvm::json::Value &, DidCloseTextDocumentParams &,
762 llvm::json::Path);
763
764struct DidSaveTextDocumentParams {
765 /// The document that was saved.
766 TextDocumentIdentifier textDocument;
767};
768bool fromJSON(const llvm::json::Value &, DidSaveTextDocumentParams &,
769 llvm::json::Path);
770
771struct TextDocumentContentChangeEvent {
772 /// The range of the document that changed.
773 std::optional<Range> range;
774
775 /// The length of the range that got replaced.
776 std::optional<int> rangeLength;
777
778 /// The new text of the range/document.
779 std::string text;
780};
781bool fromJSON(const llvm::json::Value &, TextDocumentContentChangeEvent &,
782 llvm::json::Path);
783
784struct DidChangeTextDocumentParams {
785 /// The document that did change. The version number points
786 /// to the version after all provided content changes have
787 /// been applied.
788 VersionedTextDocumentIdentifier textDocument;
789
790 /// The actual content changes.
791 std::vector<TextDocumentContentChangeEvent> contentChanges;
792
793 /// Forces diagnostics to be generated, or to not be generated, for this
794 /// version of the file. If not set, diagnostics are eventually consistent:
795 /// either they will be provided for this version or some subsequent one.
796 /// This is a clangd extension.
797 std::optional<bool> wantDiagnostics;
798
799 /// Force a complete rebuild of the file, ignoring all cached state. Slow!
800 /// This is useful to defeat clangd's assumption that missing headers will
801 /// stay missing.
802 /// This is a clangd extension.
803 bool forceRebuild = false;
804};
805bool fromJSON(const llvm::json::Value &, DidChangeTextDocumentParams &,
806 llvm::json::Path);
807
808enum class FileChangeType {
809 /// The file got created.
810 Created = 1,
811 /// The file got changed.
812 Changed = 2,
813 /// The file got deleted.
814 Deleted = 3
815};
816bool fromJSON(const llvm::json::Value &E, FileChangeType &Out,
817 llvm::json::Path);
818
819struct FileEvent {
820 /// The file's URI.
821 URIForFile uri;
822 /// The change type.
823 FileChangeType type = FileChangeType::Created;
824};
825bool fromJSON(const llvm::json::Value &, FileEvent &, llvm::json::Path);
826
827struct DidChangeWatchedFilesParams {
828 /// The actual file events.
829 std::vector<FileEvent> changes;
830};
831bool fromJSON(const llvm::json::Value &, DidChangeWatchedFilesParams &,
832 llvm::json::Path);
833
834struct DidChangeConfigurationParams {
835 ConfigurationSettings settings;
836};
837bool fromJSON(const llvm::json::Value &, DidChangeConfigurationParams &,
838 llvm::json::Path);
839
840// Note: we do not parse FormattingOptions for *FormattingParams.
841// In general, we use a clang-format style detected from common mechanisms
842// (.clang-format files and the -fallback-style flag).
843// It would be possible to override these with FormatOptions, but:
844// - the protocol makes FormatOptions mandatory, so many clients set them to
845// useless values, and we can't tell when to respect them
846// - we also format in other places, where FormatOptions aren't available.
847
848struct DocumentRangeFormattingParams {
849 /// The document to format.
850 TextDocumentIdentifier textDocument;
851
852 /// The range to format
853 Range range;
854};
855bool fromJSON(const llvm::json::Value &, DocumentRangeFormattingParams &,
856 llvm::json::Path);
857
858struct DocumentOnTypeFormattingParams {
859 /// The document to format.
860 TextDocumentIdentifier textDocument;
861
862 /// The position at which this request was sent.
863 Position position;
864
865 /// The character that has been typed.
866 std::string ch;
867};
868bool fromJSON(const llvm::json::Value &, DocumentOnTypeFormattingParams &,
869 llvm::json::Path);
870
871struct DocumentFormattingParams {
872 /// The document to format.
873 TextDocumentIdentifier textDocument;
874};
875bool fromJSON(const llvm::json::Value &, DocumentFormattingParams &,
876 llvm::json::Path);
877
878struct DocumentSymbolParams {
879 // The text document to find symbols in.
880 TextDocumentIdentifier textDocument;
881};
882bool fromJSON(const llvm::json::Value &, DocumentSymbolParams &,
883 llvm::json::Path);
884
885/// Represents a related message and source code location for a diagnostic.
886/// This should be used to point to code locations that cause or related to a
887/// diagnostics, e.g when duplicating a symbol in a scope.
888struct DiagnosticRelatedInformation {
889 /// The location of this related diagnostic information.
890 Location location;
891 /// The message of this related diagnostic information.
892 std::string message;
893};
894llvm::json::Value toJSON(const DiagnosticRelatedInformation &);
895
896enum DiagnosticTag {
897 /// Unused or unnecessary code.
898 ///
899 /// Clients are allowed to render diagnostics with this tag faded out instead
900 /// of having an error squiggle.
901 Unnecessary = 1,
902 /// Deprecated or obsolete code.
903 ///
904 /// Clients are allowed to rendered diagnostics with this tag strike through.
905 Deprecated = 2,
906};
907llvm::json::Value toJSON(DiagnosticTag Tag);
908
909/// Structure to capture a description for an error code.
910struct CodeDescription {
911 /// An URI to open with more information about the diagnostic error.
912 std::string href;
913};
914llvm::json::Value toJSON(const CodeDescription &);
915
916struct CodeAction;
917struct Diagnostic {
918 /// The range at which the message applies.
919 Range range;
920
921 /// The diagnostic's severity. Can be omitted. If omitted it is up to the
922 /// client to interpret diagnostics as error, warning, info or hint.
923 int severity = 0;
924
925 /// The diagnostic's code. Can be omitted.
926 std::string code;
927
928 /// An optional property to describe the error code.
929 std::optional<CodeDescription> codeDescription;
930
931 /// A human-readable string describing the source of this
932 /// diagnostic, e.g. 'typescript' or 'super lint'.
933 std::string source;
934
935 /// The diagnostic's message.
936 std::string message;
937
938 /// Additional metadata about the diagnostic.
939 llvm::SmallVector<DiagnosticTag, 1> tags;
940
941 /// An array of related diagnostic information, e.g. when symbol-names within
942 /// a scope collide all definitions can be marked via this property.
943 std::optional<std::vector<DiagnosticRelatedInformation>> relatedInformation;
944
945 /// The diagnostic's category. Can be omitted.
946 /// An LSP extension that's used to send the name of the category over to the
947 /// client. The category typically describes the compilation stage during
948 /// which the issue was produced, e.g. "Semantic Issue" or "Parse Issue".
949 std::optional<std::string> category;
950
951 /// Clangd extension: code actions related to this diagnostic.
952 /// Only with capability textDocument.publishDiagnostics.codeActionsInline.
953 /// (These actions can also be obtained using textDocument/codeAction).
954 std::optional<std::vector<CodeAction>> codeActions;
955
956 /// A data entry field that is preserved between a
957 /// `textDocument/publishDiagnostics` notification
958 /// and `textDocument/codeAction` request.
959 /// Mutating users should associate their data with a unique key they can use
960 /// to retrieve later on.
961 llvm::json::Object data;
962};
963llvm::json::Value toJSON(const Diagnostic &);
964
965bool fromJSON(const llvm::json::Value &, Diagnostic &, llvm::json::Path);
966llvm::raw_ostream &operator<<(llvm::raw_ostream &, const Diagnostic &);
967
968struct PublishDiagnosticsParams {
969 /// The URI for which diagnostic information is reported.
970 URIForFile uri;
971 /// An array of diagnostic information items.
972 std::vector<Diagnostic> diagnostics;
973 /// The version number of the document the diagnostics are published for.
974 std::optional<int64_t> version;
975};
976llvm::json::Value toJSON(const PublishDiagnosticsParams &);
977
978struct CodeActionContext {
979 /// An array of diagnostics known on the client side overlapping the range
980 /// provided to the `textDocument/codeAction` request. They are provided so
981 /// that the server knows which errors are currently presented to the user for
982 /// the given range. There is no guarantee that these accurately reflect the
983 /// error state of the resource. The primary parameter to compute code actions
984 /// is the provided range.
985 std::vector<Diagnostic> diagnostics;
986
987 /// Requested kind of actions to return.
988 ///
989 /// Actions not of this kind are filtered out by the client before being
990 /// shown. So servers can omit computing them.
991 std::vector<std::string> only;
992};
993bool fromJSON(const llvm::json::Value &, CodeActionContext &, llvm::json::Path);
994
995struct CodeActionParams {
996 /// The document in which the command was invoked.
997 TextDocumentIdentifier textDocument;
998
999 /// The range for which the command was invoked.
1000 Range range;
1001
1002 /// Context carrying additional information.
1003 CodeActionContext context;
1004};
1005bool fromJSON(const llvm::json::Value &, CodeActionParams &, llvm::json::Path);
1006
1007/// The edit should either provide changes or documentChanges. If the client
1008/// can handle versioned document edits and if documentChanges are present,
1009/// the latter are preferred over changes.
1010struct WorkspaceEdit {
1011 /// Holds changes to existing resources.
1012 std::optional<std::map<std::string, std::vector<TextEdit>>> changes;
1013 /// Versioned document edits.
1014 ///
1015 /// If a client neither supports `documentChanges` nor
1016 /// `workspace.workspaceEdit.resourceOperations` then only plain `TextEdit`s
1017 /// using the `changes` property are supported.
1018 std::optional<std::vector<TextDocumentEdit>> documentChanges;
1019
1020 /// A map of change annotations that can be referenced in
1021 /// AnnotatedTextEdit.
1022 std::map<std::string, ChangeAnnotation> changeAnnotations;
1023};
1024bool fromJSON(const llvm::json::Value &, WorkspaceEdit &, llvm::json::Path);
1025llvm::json::Value toJSON(const WorkspaceEdit &WE);
1026
1027/// Arguments for the 'applyTweak' command. The server sends these commands as a
1028/// response to the textDocument/codeAction request. The client can later send a
1029/// command back to the server if the user requests to execute a particular code
1030/// tweak.
1031struct TweakArgs {
1032 /// A file provided by the client on a textDocument/codeAction request.
1033 URIForFile file;
1034 /// A selection provided by the client on a textDocument/codeAction request.
1035 Range selection;
1036 /// ID of the tweak that should be executed. Corresponds to Tweak::id().
1037 std::string tweakID;
1038};
1039bool fromJSON(const llvm::json::Value &, TweakArgs &, llvm::json::Path);
1040llvm::json::Value toJSON(const TweakArgs &A);
1041
1042struct ExecuteCommandParams {
1043 /// The identifier of the actual command handler.
1044 std::string command;
1045
1046 // This is `arguments?: []any` in LSP.
1047 // All clangd's commands accept a single argument (or none => null).
1048 llvm::json::Value argument = nullptr;
1049};
1050bool fromJSON(const llvm::json::Value &, ExecuteCommandParams &,
1051 llvm::json::Path);
1052
1053struct Command : public ExecuteCommandParams {
1054 std::string title;
1055};
1056llvm::json::Value toJSON(const Command &C);
1057
1058/// A code action represents a change that can be performed in code, e.g. to fix
1059/// a problem or to refactor code.
1060///
1061/// A CodeAction must set either `edit` and/or a `command`. If both are
1062/// supplied, the `edit` is applied first, then the `command` is executed.
1063struct CodeAction {
1064 /// A short, human-readable, title for this code action.
1065 std::string title;
1066
1067 /// The kind of the code action.
1068 /// Used to filter code actions.
1069 std::optional<std::string> kind;
1070 const static llvm::StringLiteral QUICKFIX_KIND;
1071 const static llvm::StringLiteral REFACTOR_KIND;
1072 const static llvm::StringLiteral INFO_KIND;
1073
1074 /// The diagnostics that this code action resolves.
1075 std::optional<std::vector<Diagnostic>> diagnostics;
1076
1077 /// Marks this as a preferred action. Preferred actions are used by the
1078 /// `auto fix` command and can be targeted by keybindings.
1079 /// A quick fix should be marked preferred if it properly addresses the
1080 /// underlying error. A refactoring should be marked preferred if it is the
1081 /// most reasonable choice of actions to take.
1082 bool isPreferred = false;
1083
1084 /// The workspace edit this code action performs.
1085 std::optional<WorkspaceEdit> edit;
1086
1087 /// A command this code action executes. If a code action provides an edit
1088 /// and a command, first the edit is executed and then the command.
1089 std::optional<Command> command;
1090};
1091llvm::json::Value toJSON(const CodeAction &);
1092
1093/// Represents programming constructs like variables, classes, interfaces etc.
1094/// that appear in a document. Document symbols can be hierarchical and they
1095/// have two ranges: one that encloses its definition and one that points to its
1096/// most interesting range, e.g. the range of an identifier.
1097struct DocumentSymbol {
1098 /// The name of this symbol.
1099 std::string name;
1100
1101 /// More detail for this symbol, e.g the signature of a function.
1102 std::string detail;
1103
1104 /// The kind of this symbol.
1105 SymbolKind kind;
1106
1107 /// Indicates if this symbol is deprecated.
1108 bool deprecated = false;
1109
1110 /// The range enclosing this symbol not including leading/trailing whitespace
1111 /// but everything else like comments. This information is typically used to
1112 /// determine if the clients cursor is inside the symbol to reveal in the
1113 /// symbol in the UI.
1114 Range range;
1115
1116 /// The range that should be selected and revealed when this symbol is being
1117 /// picked, e.g the name of a function. Must be contained by the `range`.
1118 Range selectionRange;
1119
1120 /// Children of this symbol, e.g. properties of a class.
1121 std::vector<DocumentSymbol> children;
1122};
1123llvm::raw_ostream &operator<<(llvm::raw_ostream &O, const DocumentSymbol &S);
1124llvm::json::Value toJSON(const DocumentSymbol &S);
1125
1126/// Represents information about programming constructs like variables, classes,
1127/// interfaces etc.
1128struct SymbolInformation {
1129 /// The name of this symbol.
1130 std::string name;
1131
1132 /// The kind of this symbol.
1133 SymbolKind kind;
1134
1135 /// The location of this symbol.
1136 Location location;
1137
1138 /// The name of the symbol containing this symbol.
1139 std::string containerName;
1140
1141 /// The score that clangd calculates to rank the returned symbols.
1142 /// This excludes the fuzzy-matching score between `name` and the query.
1143 /// (Specifically, the last ::-separated component).
1144 /// This can be used to re-rank results as the user types, using client-side
1145 /// fuzzy-matching (that score should be multiplied with this one).
1146 /// This is a clangd extension, set only for workspace/symbol responses.
1147 std::optional<float> score;
1148};
1149llvm::json::Value toJSON(const SymbolInformation &);
1150llvm::raw_ostream &operator<<(llvm::raw_ostream &, const SymbolInformation &);
1151
1152/// Represents information about identifier.
1153/// This is returned from textDocument/symbolInfo, which is a clangd extension.
1154struct SymbolDetails {
1155 std::string name;
1156
1157 std::string containerName;
1158
1159 /// Unified Symbol Resolution identifier
1160 /// This is an opaque string uniquely identifying a symbol.
1161 /// Unlike SymbolID, it is variable-length and somewhat human-readable.
1162 /// It is a common representation across several clang tools.
1163 /// (See USRGeneration.h)
1164 std::string USR;
1165
1166 SymbolID ID;
1167
1168 std::optional<Location> declarationRange;
1169
1170 std::optional<Location> definitionRange;
1171};
1172llvm::json::Value toJSON(const SymbolDetails &);
1173llvm::raw_ostream &operator<<(llvm::raw_ostream &, const SymbolDetails &);
1174bool operator==(const SymbolDetails &, const SymbolDetails &);
1175
1176/// The parameters of a Workspace Symbol Request.
1177struct WorkspaceSymbolParams {
1178 /// A query string to filter symbols by.
1179 /// Clients may send an empty string here to request all the symbols.
1180 std::string query;
1181
1182 /// Max results to return, overriding global default. 0 means no limit.
1183 /// Clangd extension.
1184 std::optional<int> limit;
1185};
1186bool fromJSON(const llvm::json::Value &, WorkspaceSymbolParams &,
1187 llvm::json::Path);
1188
1189struct ApplyWorkspaceEditParams {
1190 WorkspaceEdit edit;
1191};
1192llvm::json::Value toJSON(const ApplyWorkspaceEditParams &);
1193
1194struct ApplyWorkspaceEditResponse {
1195 bool applied = true;
1196 std::optional<std::string> failureReason;
1197};
1198bool fromJSON(const llvm::json::Value &, ApplyWorkspaceEditResponse &,
1199 llvm::json::Path);
1200
1201struct TextDocumentPositionParams {
1202 /// The text document.
1203 TextDocumentIdentifier textDocument;
1204
1205 /// The position inside the text document.
1206 Position position;
1207};
1208bool fromJSON(const llvm::json::Value &, TextDocumentPositionParams &,
1209 llvm::json::Path);
1210
1211enum class CompletionTriggerKind {
1212 /// Completion was triggered by typing an identifier (24x7 code
1213 /// complete), manual invocation (e.g Ctrl+Space) or via API.
1214 Invoked = 1,
1215 /// Completion was triggered by a trigger character specified by
1216 /// the `triggerCharacters` properties of the `CompletionRegistrationOptions`.
1217 TriggerCharacter = 2,
1218 /// Completion was re-triggered as the current completion list is incomplete.
1219 TriggerTriggerForIncompleteCompletions = 3
1220};
1221
1222struct CompletionContext {
1223 /// How the completion was triggered.
1224 CompletionTriggerKind triggerKind = CompletionTriggerKind::Invoked;
1225 /// The trigger character (a single character) that has trigger code complete.
1226 /// Is undefined if `triggerKind !== CompletionTriggerKind.TriggerCharacter`
1227 std::string triggerCharacter;
1228};
1229bool fromJSON(const llvm::json::Value &, CompletionContext &, llvm::json::Path);
1230
1231struct CompletionParams : TextDocumentPositionParams {
1232 CompletionContext context;
1233
1234 /// Max results to return, overriding global default. 0 means no limit.
1235 /// Clangd extension.
1236 std::optional<int> limit;
1237};
1238bool fromJSON(const llvm::json::Value &, CompletionParams &, llvm::json::Path);
1239
1240struct MarkupContent {
1241 MarkupKind kind = MarkupKind::PlainText;
1242 std::string value;
1243};
1244llvm::json::Value toJSON(const MarkupContent &MC);
1245
1246struct Hover {
1247 /// The hover's content
1248 MarkupContent contents;
1249
1250 /// An optional range is a range inside a text document
1251 /// that is used to visualize a hover, e.g. by changing the background color.
1252 std::optional<Range> range;
1253};
1254llvm::json::Value toJSON(const Hover &H);
1255
1256/// Defines whether the insert text in a completion item should be interpreted
1257/// as plain text or a snippet.
1258enum class InsertTextFormat {
1259 Missing = 0,
1260 /// The primary text to be inserted is treated as a plain string.
1261 PlainText = 1,
1262 /// The primary text to be inserted is treated as a snippet.
1263 ///
1264 /// A snippet can define tab stops and placeholders with `$1`, `$2`
1265 /// and `${3:foo}`. `$0` defines the final tab stop, it defaults to the end
1266 /// of the snippet. Placeholders with equal identifiers are linked, that is
1267 /// typing in one will update others too.
1268 ///
1269 /// See also:
1270 /// https://github.com/Microsoft/vscode/blob/main/src/vs/editor/contrib/snippet/snippet.md
1271 Snippet = 2,
1272};
1273
1274/// Additional details for a completion item label.
1275struct CompletionItemLabelDetails {
1276 /// An optional string which is rendered less prominently directly after label
1277 /// without any spacing. Should be used for function signatures or type
1278 /// annotations.
1279 std::string detail;
1280
1281 /// An optional string which is rendered less prominently after
1282 /// CompletionItemLabelDetails.detail. Should be used for fully qualified
1283 /// names or file path.
1284 std::string description;
1285};
1286llvm::json::Value toJSON(const CompletionItemLabelDetails &);
1287
1288struct CompletionItem {
1289 /// The label of this completion item. By default also the text that is
1290 /// inserted when selecting this completion.
1291 std::string label;
1292
1293 /// Additional details for the label.
1294 std::optional<CompletionItemLabelDetails> labelDetails;
1295
1296 /// The kind of this completion item. Based of the kind an icon is chosen by
1297 /// the editor.
1298 CompletionItemKind kind = CompletionItemKind::Missing;
1299
1300 /// A human-readable string with additional information about this item, like
1301 /// type or symbol information.
1302 std::string detail;
1303
1304 /// A human-readable string that represents a doc-comment.
1305 std::optional<MarkupContent> documentation;
1306
1307 /// A string that should be used when comparing this item with other items.
1308 /// When `falsy` the label is used.
1309 std::string sortText;
1310
1311 /// A string that should be used when filtering a set of completion items.
1312 /// When `falsy` the label is used.
1313 std::string filterText;
1314
1315 /// A string that should be inserted to a document when selecting this
1316 /// completion. When `falsy` the label is used.
1317 std::string insertText;
1318
1319 /// The format of the insert text. The format applies to both the `insertText`
1320 /// property and the `newText` property of a provided `textEdit`.
1321 InsertTextFormat insertTextFormat = InsertTextFormat::Missing;
1322
1323 /// An edit which is applied to a document when selecting this completion.
1324 /// When an edit is provided `insertText` is ignored.
1325 ///
1326 /// Note: The range of the edit must be a single line range and it must
1327 /// contain the position at which completion has been requested.
1328 std::optional<TextEdit> textEdit;
1329
1330 /// An optional array of additional text edits that are applied when selecting
1331 /// this completion. Edits must not overlap with the main edit nor with
1332 /// themselves.
1333 std::vector<TextEdit> additionalTextEdits;
1334
1335 /// Indicates if this item is deprecated.
1336 bool deprecated = false;
1337
1338 /// The score that clangd calculates to rank the returned completions.
1339 /// This excludes the fuzzy-match between `filterText` and the partial word.
1340 /// This can be used to re-rank results as the user types, using client-side
1341 /// fuzzy-matching (that score should be multiplied with this one).
1342 /// This is a clangd extension.
1343 float score = 0.f;
1344
1345 // TODO: Add custom commitCharacters for some of the completion items. For
1346 // example, it makes sense to use () only for the functions.
1347 // TODO(krasimir): The following optional fields defined by the language
1348 // server protocol are unsupported:
1349 //
1350 // data?: any - A data entry field that is preserved on a completion item
1351 // between a completion and a completion resolve request.
1352};
1353llvm::json::Value toJSON(const CompletionItem &);
1354llvm::raw_ostream &operator<<(llvm::raw_ostream &, const CompletionItem &);
1355
1356/// Remove the labelDetails field (for clients that don't support it).
1357/// Places the information into other fields of the completion item.
1358void removeCompletionLabelDetails(CompletionItem &);
1359
1360bool operator<(const CompletionItem &, const CompletionItem &);
1361
1362/// Represents a collection of completion items to be presented in the editor.
1363struct CompletionList {
1364 /// The list is not complete. Further typing should result in recomputing the
1365 /// list.
1366 bool isIncomplete = false;
1367
1368 /// The completion items.
1369 std::vector<CompletionItem> items;
1370};
1371llvm::json::Value toJSON(const CompletionList &);
1372
1373/// A single parameter of a particular signature.
1374struct ParameterInformation {
1375
1376 /// The label of this parameter. Ignored when labelOffsets is set.
1377 std::string labelString;
1378
1379 /// Inclusive start and exclusive end offsets withing the containing signature
1380 /// label.
1381 /// Offsets are computed by lspLength(), which counts UTF-16 code units by
1382 /// default but that can be overriden, see its documentation for details.
1383 std::optional<std::pair<unsigned, unsigned>> labelOffsets;
1384
1385 /// The documentation of this parameter. Optional.
1386 std::string documentation;
1387};
1388llvm::json::Value toJSON(const ParameterInformation &);
1389
1390/// Represents the signature of something callable.
1391struct SignatureInformation {
1392
1393 /// The label of this signature. Mandatory.
1394 std::string label;
1395
1396 /// The documentation of this signature. Optional.
1397 MarkupContent documentation;
1398
1399 /// The parameters of this signature.
1400 std::vector<ParameterInformation> parameters;
1401};
1402llvm::json::Value toJSON(const SignatureInformation &);
1403llvm::raw_ostream &operator<<(llvm::raw_ostream &,
1404 const SignatureInformation &);
1405
1406/// Represents the signature of a callable.
1407struct SignatureHelp {
1408
1409 /// The resulting signatures.
1410 std::vector<SignatureInformation> signatures;
1411
1412 /// The active signature.
1413 int activeSignature = 0;
1414
1415 /// The active parameter of the active signature.
1416 int activeParameter = 0;
1417
1418 /// Position of the start of the argument list, including opening paren. e.g.
1419 /// foo("first arg", "second arg",
1420 /// ^-argListStart ^-cursor
1421 /// This is a clangd-specific extension, it is only available via C++ API and
1422 /// not currently serialized for the LSP.
1423 Position argListStart;
1424};
1425llvm::json::Value toJSON(const SignatureHelp &);
1426
1427struct RenameParams {
1428 /// The document that was opened.
1429 TextDocumentIdentifier textDocument;
1430
1431 /// The position at which this request was sent.
1432 Position position;
1433
1434 /// The new name of the symbol.
1435 std::string newName;
1436};
1437bool fromJSON(const llvm::json::Value &, RenameParams &, llvm::json::Path);
1438
1439enum class DocumentHighlightKind { Text = 1, Read = 2, Write = 3 };
1440
1441/// A document highlight is a range inside a text document which deserves
1442/// special attention. Usually a document highlight is visualized by changing
1443/// the background color of its range.
1444
1445struct DocumentHighlight {
1446 /// The range this highlight applies to.
1447 Range range;
1448
1449 /// The highlight kind, default is DocumentHighlightKind.Text.
1450 DocumentHighlightKind kind = DocumentHighlightKind::Text;
1451
1452 friend bool operator<(const DocumentHighlight &LHS,
1453 const DocumentHighlight &RHS) {
1454 int LHSKind = static_cast<int>(LHS.kind);
1455 int RHSKind = static_cast<int>(RHS.kind);
1456 return std::tie(args: LHS.range, args&: LHSKind) < std::tie(args: RHS.range, args&: RHSKind);
1457 }
1458
1459 friend bool operator==(const DocumentHighlight &LHS,
1460 const DocumentHighlight &RHS) {
1461 return LHS.kind == RHS.kind && LHS.range == RHS.range;
1462 }
1463};
1464llvm::json::Value toJSON(const DocumentHighlight &DH);
1465llvm::raw_ostream &operator<<(llvm::raw_ostream &, const DocumentHighlight &);
1466
1467enum class TypeHierarchyDirection { Children = 0, Parents = 1, Both = 2 };
1468bool fromJSON(const llvm::json::Value &E, TypeHierarchyDirection &Out,
1469 llvm::json::Path);
1470
1471/// The type hierarchy params is an extension of the
1472/// `TextDocumentPositionsParams` with optional properties which can be used to
1473/// eagerly resolve the item when requesting from the server.
1474struct TypeHierarchyPrepareParams : public TextDocumentPositionParams {
1475 /// The hierarchy levels to resolve. `0` indicates no level.
1476 /// This is a clangd extension.
1477 int resolve = 0;
1478
1479 /// The direction of the hierarchy levels to resolve.
1480 /// This is a clangd extension.
1481 TypeHierarchyDirection direction = TypeHierarchyDirection::Parents;
1482};
1483bool fromJSON(const llvm::json::Value &, TypeHierarchyPrepareParams &,
1484 llvm::json::Path);
1485
1486struct TypeHierarchyItem {
1487 /// The name of this item.
1488 std::string name;
1489
1490 /// The kind of this item.
1491 SymbolKind kind;
1492
1493 /// More detail for this item, e.g. the signature of a function.
1494 std::optional<std::string> detail;
1495
1496 /// The resource identifier of this item.
1497 URIForFile uri;
1498
1499 /// The range enclosing this symbol not including leading/trailing whitespace
1500 /// but everything else, e.g. comments and code.
1501 Range range;
1502
1503 /// The range that should be selected and revealed when this symbol is being
1504 /// picked, e.g. the name of a function. Must be contained by the `range`.
1505 Range selectionRange;
1506
1507 /// Used to resolve a client provided item back.
1508 struct ResolveParams {
1509 SymbolID symbolID;
1510 /// std::nullopt means parents aren't resolved and empty is no parents.
1511 std::optional<std::vector<ResolveParams>> parents;
1512 };
1513 /// A data entry field that is preserved between a type hierarchy prepare and
1514 /// supertypes or subtypes requests. It could also be used to identify the
1515 /// type hierarchy in the server, helping improve the performance on resolving
1516 /// supertypes and subtypes.
1517 ResolveParams data;
1518
1519 /// `true` if the hierarchy item is deprecated. Otherwise, `false`.
1520 /// This is a clangd exntesion.
1521 bool deprecated = false;
1522
1523 /// This is a clangd exntesion.
1524 std::optional<std::vector<TypeHierarchyItem>> parents;
1525
1526 /// If this type hierarchy item is resolved, it contains the direct children
1527 /// of the current item. Could be empty if the item does not have any
1528 /// descendants. If not defined, the children have not been resolved.
1529 /// This is a clangd exntesion.
1530 std::optional<std::vector<TypeHierarchyItem>> children;
1531};
1532llvm::json::Value toJSON(const TypeHierarchyItem::ResolveParams &);
1533bool fromJSON(const TypeHierarchyItem::ResolveParams &);
1534llvm::json::Value toJSON(const TypeHierarchyItem &);
1535llvm::raw_ostream &operator<<(llvm::raw_ostream &, const TypeHierarchyItem &);
1536bool fromJSON(const llvm::json::Value &, TypeHierarchyItem &, llvm::json::Path);
1537
1538/// Parameters for the `typeHierarchy/resolve` request.
1539struct ResolveTypeHierarchyItemParams {
1540 /// The item to resolve.
1541 TypeHierarchyItem item;
1542
1543 /// The hierarchy levels to resolve. `0` indicates no level.
1544 int resolve;
1545
1546 /// The direction of the hierarchy levels to resolve.
1547 TypeHierarchyDirection direction;
1548};
1549bool fromJSON(const llvm::json::Value &, ResolveTypeHierarchyItemParams &,
1550 llvm::json::Path);
1551
1552enum class SymbolTag { Deprecated = 1 };
1553llvm::json::Value toJSON(SymbolTag);
1554
1555/// The parameter of a `textDocument/prepareCallHierarchy` request.
1556struct CallHierarchyPrepareParams : public TextDocumentPositionParams {};
1557
1558/// Represents programming constructs like functions or constructors
1559/// in the context of call hierarchy.
1560struct CallHierarchyItem {
1561 /// The name of this item.
1562 std::string name;
1563
1564 /// The kind of this item.
1565 SymbolKind kind;
1566
1567 /// Tags for this item.
1568 std::vector<SymbolTag> tags;
1569
1570 /// More detaill for this item, e.g. the signature of a function.
1571 std::string detail;
1572
1573 /// The resource identifier of this item.
1574 URIForFile uri;
1575
1576 /// The range enclosing this symbol not including leading / trailing
1577 /// whitespace but everything else, e.g. comments and code.
1578 Range range;
1579
1580 /// The range that should be selected and revealed when this symbol
1581 /// is being picked, e.g. the name of a function.
1582 /// Must be contained by `Rng`.
1583 Range selectionRange;
1584
1585 /// An optional 'data' field, which can be used to identify a call
1586 /// hierarchy item in an incomingCalls or outgoingCalls request.
1587 std::string data;
1588};
1589llvm::json::Value toJSON(const CallHierarchyItem &);
1590bool fromJSON(const llvm::json::Value &, CallHierarchyItem &, llvm::json::Path);
1591
1592/// The parameter of a `callHierarchy/incomingCalls` request.
1593struct CallHierarchyIncomingCallsParams {
1594 CallHierarchyItem item;
1595};
1596bool fromJSON(const llvm::json::Value &, CallHierarchyIncomingCallsParams &,
1597 llvm::json::Path);
1598
1599/// Represents an incoming call, e.g. a caller of a method or constructor.
1600struct CallHierarchyIncomingCall {
1601 /// The item that makes the call.
1602 CallHierarchyItem from;
1603
1604 /// The range at which the calls appear.
1605 /// This is relative to the caller denoted by `From`.
1606 std::vector<Range> fromRanges;
1607};
1608llvm::json::Value toJSON(const CallHierarchyIncomingCall &);
1609
1610/// The parameter of a `callHierarchy/outgoingCalls` request.
1611struct CallHierarchyOutgoingCallsParams {
1612 CallHierarchyItem item;
1613};
1614bool fromJSON(const llvm::json::Value &, CallHierarchyOutgoingCallsParams &,
1615 llvm::json::Path);
1616
1617/// Represents an outgoing call, e.g. calling a getter from a method or
1618/// a method from a constructor etc.
1619struct CallHierarchyOutgoingCall {
1620 /// The item that is called.
1621 CallHierarchyItem to;
1622
1623 /// The range at which this item is called.
1624 /// This is the range relative to the caller, and not `To`.
1625 std::vector<Range> fromRanges;
1626};
1627llvm::json::Value toJSON(const CallHierarchyOutgoingCall &);
1628
1629/// A parameter literal used in inlay hint requests.
1630struct InlayHintsParams {
1631 /// The text document.
1632 TextDocumentIdentifier textDocument;
1633
1634 /// The visible document range for which inlay hints should be computed.
1635 ///
1636 /// std::nullopt is a clangd extension, which hints for computing hints on the
1637 /// whole file.
1638 std::optional<Range> range;
1639};
1640bool fromJSON(const llvm::json::Value &, InlayHintsParams &, llvm::json::Path);
1641
1642/// Inlay hint kinds.
1643enum class InlayHintKind {
1644 /// An inlay hint that for a type annotation.
1645 ///
1646 /// An example of a type hint is a hint in this position:
1647 /// auto var ^ = expr;
1648 /// which shows the deduced type of the variable.
1649 Type = 1,
1650
1651 /// An inlay hint that is for a parameter.
1652 ///
1653 /// An example of a parameter hint is a hint in this position:
1654 /// func(^arg);
1655 /// which shows the name of the corresponding parameter.
1656 Parameter = 2,
1657
1658 /// A hint before an element of an aggregate braced initializer list,
1659 /// indicating what it is initializing.
1660 /// Pair{^1, ^2};
1661 /// Uses designator syntax, e.g. `.first:`.
1662 /// This is a clangd extension.
1663 Designator = 3,
1664
1665 /// A hint after function, type or namespace definition, indicating the
1666 /// defined symbol name of the definition.
1667 ///
1668 /// An example of a decl name hint in this position:
1669 /// void func() {
1670 /// } ^
1671 /// Uses comment-like syntax like "// func".
1672 /// This is a clangd extension.
1673 BlockEnd = 4,
1674
1675 /// Other ideas for hints that are not currently implemented:
1676 ///
1677 /// * Chaining hints, showing the types of intermediate expressions
1678 /// in a chain of function calls.
1679 /// * Hints indicating implicit conversions or implicit constructor calls.
1680};
1681llvm::json::Value toJSON(const InlayHintKind &);
1682
1683/// Inlay hint information.
1684struct InlayHint {
1685 /// The position of this hint.
1686 Position position;
1687
1688 /// The label of this hint. A human readable string or an array of
1689 /// InlayHintLabelPart label parts.
1690 ///
1691 /// *Note* that neither the string nor the label part can be empty.
1692 std::string label;
1693
1694 /// The kind of this hint. Can be omitted in which case the client should fall
1695 /// back to a reasonable default.
1696 InlayHintKind kind;
1697
1698 /// Render padding before the hint.
1699 ///
1700 /// Note: Padding should use the editor's background color, not the
1701 /// background color of the hint itself. That means padding can be used
1702 /// to visually align/separate an inlay hint.
1703 bool paddingLeft = false;
1704
1705 /// Render padding after the hint.
1706 ///
1707 /// Note: Padding should use the editor's background color, not the
1708 /// background color of the hint itself. That means padding can be used
1709 /// to visually align/separate an inlay hint.
1710 bool paddingRight = false;
1711
1712 /// The range of source code to which the hint applies.
1713 ///
1714 /// For example, a parameter hint may have the argument as its range.
1715 /// The range allows clients more flexibility of when/how to display the hint.
1716 /// This is an (unserialized) clangd extension.
1717 Range range;
1718};
1719llvm::json::Value toJSON(const InlayHint &);
1720bool operator==(const InlayHint &, const InlayHint &);
1721bool operator<(const InlayHint &, const InlayHint &);
1722llvm::raw_ostream &operator<<(llvm::raw_ostream &, InlayHintKind);
1723
1724struct ReferenceContext {
1725 /// Include the declaration of the current symbol.
1726 bool includeDeclaration = false;
1727};
1728
1729struct ReferenceParams : public TextDocumentPositionParams {
1730 ReferenceContext context;
1731};
1732bool fromJSON(const llvm::json::Value &, ReferenceParams &, llvm::json::Path);
1733
1734/// Clangd extension: indicates the current state of the file in clangd,
1735/// sent from server via the `textDocument/clangd.fileStatus` notification.
1736struct FileStatus {
1737 /// The text document's URI.
1738 URIForFile uri;
1739 /// The human-readable string presents the current state of the file, can be
1740 /// shown in the UI (e.g. status bar).
1741 std::string state;
1742 // FIXME: add detail messages.
1743};
1744llvm::json::Value toJSON(const FileStatus &);
1745
1746/// Specifies a single semantic token in the document.
1747/// This struct is not part of LSP, which just encodes lists of tokens as
1748/// arrays of numbers directly.
1749struct SemanticToken {
1750 /// token line number, relative to the previous token
1751 unsigned deltaLine = 0;
1752 /// token start character, relative to the previous token
1753 /// (relative to 0 or the previous token's start if they are on the same line)
1754 unsigned deltaStart = 0;
1755 /// the length of the token. A token cannot be multiline
1756 unsigned length = 0;
1757 /// will be looked up in `SemanticTokensLegend.tokenTypes`
1758 unsigned tokenType = 0;
1759 /// each set bit will be looked up in `SemanticTokensLegend.tokenModifiers`
1760 unsigned tokenModifiers = 0;
1761};
1762bool operator==(const SemanticToken &, const SemanticToken &);
1763
1764/// A versioned set of tokens.
1765struct SemanticTokens {
1766 // An optional result id. If provided and clients support delta updating
1767 // the client will include the result id in the next semantic token request.
1768 // A server can then instead of computing all semantic tokens again simply
1769 // send a delta.
1770 std::string resultId;
1771
1772 /// The actual tokens.
1773 std::vector<SemanticToken> tokens; // encoded as a flat integer array.
1774};
1775llvm::json::Value toJSON(const SemanticTokens &);
1776
1777/// Body of textDocument/semanticTokens/full request.
1778struct SemanticTokensParams {
1779 /// The text document.
1780 TextDocumentIdentifier textDocument;
1781};
1782bool fromJSON(const llvm::json::Value &, SemanticTokensParams &,
1783 llvm::json::Path);
1784
1785/// Body of textDocument/semanticTokens/full/delta request.
1786/// Requests the changes in semantic tokens since a previous response.
1787struct SemanticTokensDeltaParams {
1788 /// The text document.
1789 TextDocumentIdentifier textDocument;
1790 /// The previous result id.
1791 std::string previousResultId;
1792};
1793bool fromJSON(const llvm::json::Value &Params, SemanticTokensDeltaParams &R,
1794 llvm::json::Path);
1795
1796/// Describes a replacement of a contiguous range of semanticTokens.
1797struct SemanticTokensEdit {
1798 // LSP specifies `start` and `deleteCount` which are relative to the array
1799 // encoding of the previous tokens.
1800 // We use token counts instead, and translate when serializing this struct.
1801 unsigned startToken = 0;
1802 unsigned deleteTokens = 0;
1803 std::vector<SemanticToken> tokens; // encoded as a flat integer array
1804};
1805llvm::json::Value toJSON(const SemanticTokensEdit &);
1806
1807/// This models LSP SemanticTokensDelta | SemanticTokens, which is the result of
1808/// textDocument/semanticTokens/full/delta.
1809struct SemanticTokensOrDelta {
1810 std::string resultId;
1811 /// Set if we computed edits relative to a previous set of tokens.
1812 std::optional<std::vector<SemanticTokensEdit>> edits;
1813 /// Set if we computed a fresh set of tokens.
1814 std::optional<std::vector<SemanticToken>> tokens; // encoded as integer array
1815};
1816llvm::json::Value toJSON(const SemanticTokensOrDelta &);
1817
1818/// Parameters for the inactive regions (server-side) push notification.
1819/// This is a clangd extension.
1820struct InactiveRegionsParams {
1821 /// The textdocument these inactive regions belong to.
1822 TextDocumentIdentifier TextDocument;
1823 /// The inactive regions that should be sent.
1824 std::vector<Range> InactiveRegions;
1825};
1826llvm::json::Value toJSON(const InactiveRegionsParams &InactiveRegions);
1827
1828struct SelectionRangeParams {
1829 /// The text document.
1830 TextDocumentIdentifier textDocument;
1831
1832 /// The positions inside the text document.
1833 std::vector<Position> positions;
1834};
1835bool fromJSON(const llvm::json::Value &, SelectionRangeParams &,
1836 llvm::json::Path);
1837
1838struct SelectionRange {
1839 /**
1840 * The range of this selection range.
1841 */
1842 Range range;
1843 /**
1844 * The parent selection range containing this range. Therefore `parent.range`
1845 * must contain `this.range`.
1846 */
1847 std::unique_ptr<SelectionRange> parent;
1848};
1849llvm::json::Value toJSON(const SelectionRange &);
1850
1851/// Parameters for the document link request.
1852struct DocumentLinkParams {
1853 /// The document to provide document links for.
1854 TextDocumentIdentifier textDocument;
1855};
1856bool fromJSON(const llvm::json::Value &, DocumentLinkParams &,
1857 llvm::json::Path);
1858
1859/// A range in a text document that links to an internal or external resource,
1860/// like another text document or a web site.
1861struct DocumentLink {
1862 /// The range this link applies to.
1863 Range range;
1864
1865 /// The uri this link points to. If missing a resolve request is sent later.
1866 URIForFile target;
1867
1868 // TODO(forster): The following optional fields defined by the language
1869 // server protocol are unsupported:
1870 //
1871 // data?: any - A data entry field that is preserved on a document link
1872 // between a DocumentLinkRequest and a
1873 // DocumentLinkResolveRequest.
1874
1875 friend bool operator==(const DocumentLink &LHS, const DocumentLink &RHS) {
1876 return LHS.range == RHS.range && LHS.target == RHS.target;
1877 }
1878
1879 friend bool operator!=(const DocumentLink &LHS, const DocumentLink &RHS) {
1880 return !(LHS == RHS);
1881 }
1882};
1883llvm::json::Value toJSON(const DocumentLink &DocumentLink);
1884
1885// FIXME(kirillbobyrev): Add FoldingRangeClientCapabilities so we can support
1886// per-line-folding editors.
1887struct FoldingRangeParams {
1888 TextDocumentIdentifier textDocument;
1889};
1890bool fromJSON(const llvm::json::Value &, FoldingRangeParams &,
1891 llvm::json::Path);
1892
1893/// Stores information about a region of code that can be folded.
1894struct FoldingRange {
1895 unsigned startLine = 0;
1896 unsigned startCharacter;
1897 unsigned endLine = 0;
1898 unsigned endCharacter;
1899
1900 const static llvm::StringLiteral REGION_KIND;
1901 const static llvm::StringLiteral COMMENT_KIND;
1902 const static llvm::StringLiteral IMPORT_KIND;
1903 std::string kind;
1904};
1905llvm::json::Value toJSON(const FoldingRange &Range);
1906
1907/// Keys starting with an underscore(_) represent leaves, e.g. _total or _self
1908/// for memory usage of whole subtree or only that specific node in bytes. All
1909/// other keys represents children. An example:
1910/// {
1911/// "_self": 0,
1912/// "_total": 8,
1913/// "child1": {
1914/// "_self": 4,
1915/// "_total": 4,
1916/// }
1917/// "child2": {
1918/// "_self": 2,
1919/// "_total": 4,
1920/// "child_deep": {
1921/// "_self": 2,
1922/// "_total": 2,
1923/// }
1924/// }
1925/// }
1926llvm::json::Value toJSON(const MemoryTree &MT);
1927
1928/// Payload for textDocument/ast request.
1929/// This request is a clangd extension.
1930struct ASTParams {
1931 /// The text document.
1932 TextDocumentIdentifier textDocument;
1933
1934 /// The position of the node to be dumped.
1935 /// The highest-level node that entirely contains the range will be returned.
1936 /// If no range is given, the root translation unit node will be returned.
1937 std::optional<Range> range;
1938};
1939bool fromJSON(const llvm::json::Value &, ASTParams &, llvm::json::Path);
1940
1941/// Simplified description of a clang AST node.
1942/// This is clangd's internal representation of C++ code.
1943struct ASTNode {
1944 /// The general kind of node, such as "expression"
1945 /// Corresponds to the base AST node type such as Expr.
1946 std::string role;
1947 /// The specific kind of node this is, such as "BinaryOperator".
1948 /// This is usually a concrete node class (with Expr etc suffix dropped).
1949 /// When there's no hierarchy (e.g. TemplateName), the variant (NameKind).
1950 std::string kind;
1951 /// Brief additional information, such as "||" for the particular operator.
1952 /// The information included depends on the node kind, and may be empty.
1953 std::string detail;
1954 /// A one-line dump of detailed information about the node.
1955 /// This includes role/kind/description information, but is rather cryptic.
1956 /// It is similar to the output from `clang -Xclang -ast-dump`.
1957 /// May be empty for certain types of nodes.
1958 std::string arcana;
1959 /// The range of the original source file covered by this node.
1960 /// May be missing for implicit nodes, or those created by macro expansion.
1961 std::optional<Range> range;
1962 /// Nodes nested within this one, such as the operands of a BinaryOperator.
1963 std::vector<ASTNode> children;
1964};
1965llvm::json::Value toJSON(const ASTNode &);
1966llvm::raw_ostream &operator<<(llvm::raw_ostream &, const ASTNode &);
1967
1968} // namespace clangd
1969} // namespace clang
1970
1971namespace llvm {
1972template <> struct format_provider<clang::clangd::Position> {
1973 static void format(const clang::clangd::Position &Pos, raw_ostream &OS,
1974 StringRef Style) {
1975 assert(Style.empty() && "style modifiers for this type are not supported");
1976 OS << Pos;
1977 }
1978};
1979} // namespace llvm
1980
1981// NOLINTEND(readability-identifier-naming)
1982
1983#endif
1984

source code of clang-tools-extra/clangd/Protocol.h