llvm-project/clang-tools-extra/clangd
Sam McCall a68951e37e [clangd] More precise representation of symbol names/labels in the index.
Summary:
Previously, the strings matched LSP completion pretty closely.
The completion label was a single string, for instance. This made
implementing completion itself easy but makes it hard to use the names
in other way, e.g. pretty-printed name in synthesized
documentation/hover.

It also limits our introspection into completion items, which can only
be as precise as the indexed symbols. This change is a prerequisite to
improvements to overload bundling which need to inspect e.g. signature
structure.

Reviewers: ioeric

Subscribers: ilya-biryukov, MaskRay, jkorous, cfe-commits

Differential Revision: https://reviews.llvm.org/D48475

llvm-svn: 335360
2018-06-22 16:11:35 +00:00
..
clients/clangd-vscode [clangd] Bump v0.0.6 for vscode-clangd. 2018-04-09 15:37:09 +00:00
fuzzer [clangd] Fix fuzzer after r333993 2018-06-08 20:25:05 +00:00
global-symbol-builder [clangd] Enable parsing of non-doxygen comments in global-symbol-builder 2018-05-30 10:43:00 +00:00
index [clangd] More precise representation of symbol names/labels in the index. 2018-06-22 16:11:35 +00:00
tool [clangd] Add option to fold overloads into a single completion item. 2018-06-15 11:06:29 +00:00
AST.cpp [clangd] Expose qualified symbol names in CompletionItem (C++ structure only, no json). 2018-06-22 10:46:59 +00:00
AST.h [clangd] Expose qualified symbol names in CompletionItem (C++ structure only, no json). 2018-06-22 10:46:59 +00:00
CMakeLists.txt [clangd] Move caching of compile args out of ClangdServer. 2018-06-13 09:20:41 +00:00
ClangdLSPServer.cpp [clangd] Move caching of compile args out of ClangdServer. 2018-06-13 09:20:41 +00:00
ClangdLSPServer.h [clangd] Move caching of compile args out of ClangdServer. 2018-06-13 09:20:41 +00:00
ClangdServer.cpp [clangd] Use workspace root path as hint path for resolving URIs in workspace/symbol 2018-06-19 09:33:53 +00:00
ClangdServer.h [clangd] Customizable URI schemes for dynamic index. 2018-06-15 08:55:00 +00:00
ClangdUnit.cpp [clangd] Boost code completion results that are narrowly scoped (local, members) 2018-06-05 16:30:25 +00:00
ClangdUnit.h [clangd] Boost code completion results that are narrowly scoped (local, members) 2018-06-05 16:30:25 +00:00
CodeComplete.cpp [clangd] More precise representation of symbol names/labels in the index. 2018-06-22 16:11:35 +00:00
CodeComplete.h [clangd] UI for completion items that would trigger include insertion. 2018-06-15 13:34:18 +00:00
CodeCompletionStrings.cpp [clangd] More precise representation of symbol names/labels in the index. 2018-06-22 16:11:35 +00:00
CodeCompletionStrings.h [clangd] More precise representation of symbol names/labels in the index. 2018-06-22 16:11:35 +00:00
Compiler.cpp [clangd] Log all ignored diagnostics. 2018-02-12 12:48:51 +00:00
Compiler.h [clangd] Log all ignored diagnostics. 2018-02-12 12:48:51 +00:00
Context.cpp [clangd] Address FIXME and fix comment 2018-02-25 07:21:16 +00:00
Context.h [clangd] context key constructor is constexpr. NFC 2018-06-15 12:39:21 +00:00
Diagnostics.cpp [clangd] synthesize fix message when the diagnostic doesn't provide one. 2018-04-03 17:35:57 +00:00
Diagnostics.h [clangd] Prune some dead declarations. No functionality change. 2018-04-23 14:58:18 +00:00
DraftStore.cpp [clangd] Support incremental document syncing 2018-03-26 14:41:40 +00:00
DraftStore.h [clangd] Support incremental document syncing 2018-03-26 14:41:40 +00:00
FindSymbols.cpp [clangd] Use workspace root path as hint path for resolving URIs in workspace/symbol 2018-06-19 09:33:53 +00:00
FindSymbols.h [clangd] Use workspace root path as hint path for resolving URIs in workspace/symbol 2018-06-19 09:33:53 +00:00
Function.h [clangd] Remove Tagged and some related APIs from ClangdServer. 2018-03-12 23:22:35 +00:00
FuzzyMatch.cpp [clangd] FuzzyMatch: forbid tail-tail matches after a miss: [pat] !~ "panther" 2018-06-14 13:50:30 +00:00
FuzzyMatch.h [clangd] FuzzyMatch: forbid tail-tail matches after a miss: [pat] !~ "panther" 2018-06-14 13:50:30 +00:00
GlobalCompilationDatabase.cpp [clangd] Move caching of compile args out of ClangdServer. 2018-06-13 09:20:41 +00:00
GlobalCompilationDatabase.h [clangd] Move caching of compile args out of ClangdServer. 2018-06-13 09:20:41 +00:00
Headers.cpp [clangd] UI for completion items that would trigger include insertion. 2018-06-15 13:34:18 +00:00
Headers.h [clangd] UI for completion items that would trigger include insertion. 2018-06-15 13:34:18 +00:00
JSONExpr.cpp [clangd] Fix repeated word typo. NFC 2018-03-29 20:03:16 +00:00
JSONExpr.h [clangd] Hover should return null when not hovering over anything. 2018-06-04 10:37:16 +00:00
JSONRPCDispatcher.cpp [clangd] Rewrite JSON dispatcher loop using C IO (FILE*) instead of std::istream. 2018-06-05 09:34:46 +00:00
JSONRPCDispatcher.h [clangd] Rewrite JSON dispatcher loop using C IO (FILE*) instead of std::istream. 2018-06-05 09:34:46 +00:00
Logger.cpp [clangd] Pass Context implicitly using TLS. 2018-01-31 13:40:48 +00:00
Logger.h [clangd] Pass Context implicitly using TLS. 2018-01-31 13:40:48 +00:00
Path.h Restored r303067 and fixed failing test. 2017-05-16 09:38:59 +00:00
Protocol.cpp PrintEscapedString -> printEscapedString 2018-05-31 17:36:31 +00:00
Protocol.h [clangd] Expose qualified symbol names in CompletionItem (C++ structure only, no json). 2018-06-22 10:46:59 +00:00
ProtocolHandlers.cpp [clangd] Implementation of workspace/symbol request 2018-04-23 20:00:52 +00:00
ProtocolHandlers.h [clangd] Implementation of workspace/symbol request 2018-04-23 20:00:52 +00:00
Quality.cpp [clangd] Fix proximity signal output format. NFC 2018-06-21 09:51:28 +00:00
Quality.h [clangd] Boost completion score according to file proximity. 2018-06-15 08:58:12 +00:00
SourceCode.cpp [clangd] Move helpers that convert Replacements to TextEdits to SourceCode.h 2018-05-11 12:12:08 +00:00
SourceCode.h [clangd] Move helpers that convert Replacements to TextEdits to SourceCode.h 2018-05-11 12:12:08 +00:00
TUScheduler.cpp [clangd] Compute better estimates for memory usage of the AST 2018-06-01 14:44:57 +00:00
TUScheduler.h [clangd] Keep only a limited number of idle ASTs in memory 2018-06-01 10:08:43 +00:00
Threading.cpp [clangd] Trace time the operations wait on Semaphore. 2018-06-12 11:56:21 +00:00
Threading.h [clangd] Debounce streams of updates. 2018-03-02 08:56:37 +00:00
Trace.cpp [clangd] Tracing: name worker threads, and enforce naming scheduled async tasks 2018-02-19 09:56:28 +00:00
Trace.h [clangd] clang-format the source code. NFC 2018-05-30 12:41:19 +00:00
URI.cpp [clangd] Allow using customized include path in URI. 2018-04-09 15:09:44 +00:00
URI.h [clangd] clang-format the source code. NFC 2018-05-30 12:41:19 +00:00
XRefs.cpp [clangd] Hover should return null when not hovering over anything. 2018-06-04 10:37:16 +00:00
XRefs.h [clangd] Hover should return null when not hovering over anything. 2018-06-04 10:37:16 +00:00