clang-tools 20.0.0git
|
#include <Protocol.h>
Public Attributes | |
std::vector< Diagnostic > | diagnostics |
An array of diagnostics known on the client side overlapping the range provided to the textDocument/codeAction request. | |
std::vector< std::string > | only |
Requested kind of actions to return. | |
Definition at line 978 of file Protocol.h.
std::vector<Diagnostic> clang::clangd::CodeActionContext::diagnostics |
An array of diagnostics known on the client side overlapping the range provided to the textDocument/codeAction
request.
They are provided so that the server knows which errors are currently presented to the user for the given range. There is no guarantee that these accurately reflect the error state of the resource. The primary parameter to compute code actions is the provided range.
Definition at line 985 of file Protocol.h.
Referenced by clang::clangd::fromJSON().
std::vector<std::string> clang::clangd::CodeActionContext::only |
Requested kind of actions to return.
Actions not of this kind are filtered out by the client before being shown. So servers can omit computing them.
Definition at line 991 of file Protocol.h.
Referenced by clang::clangd::fromJSON().