We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 92164fa commit fc44a4fCopy full SHA for fc44a4f
clang-tools-extra/clangd/CodeComplete.cpp
@@ -2434,6 +2434,9 @@ CompletionItem CodeCompletion::render(const CodeCompleteOptions &Opts) const {
2434
}
2435
2436
llvm::raw_ostream &operator<<(llvm::raw_ostream &OS, const CodeCompletion &C) {
2437
+ OS << "Signature: " << "\"" << C.Signature << "\", "
2438
+ << "SnippetSuffix: " << "\"" << C.SnippetSuffix << "\""
2439
+ << ", Rendered:";
2440
// For now just lean on CompletionItem.
2441
return OS << C.render(CodeCompleteOptions());
2442
0 commit comments