hanchenye-llvm-project/clang-tools-extra/clangd
Sam McCall 8b2faeed02 [clangd] Change index scope convention from "outer::inner" to "outer::inner::"
Global scope is "" (was "")
Top-level namespace scope is "ns::" (was "ns")
Nested namespace scope is "ns::ns::" (was "ns::ns")

This composes more naturally:
- qname = scope + name
- full scope = resolved scope + unresolved scope (D42073 was the trigger)
It removes a wart from the old way: "foo::" has one more separator than "".

Another alternative that has these properties is "::ns", but that lacks
the property that both the scope and the name are substrings of the
qname as produced by clang.

This is re-landing r322996 which didn't build.

llvm-svn: 323000
2018-01-19 22:18:21 +00:00
..
clients/clangd-vscode [clangd] Use the clang-tools-extra as the official repo for `vscode-clangd` extension. 2017-12-21 08:45:18 +00:00
fuzzer [clangd-fuzzer] Update ClangdLSPServer constructor call. 2017-12-20 22:29:23 +00:00
global-symbol-builder [clangd] Deduplicate symbols collected in global-symbol-builder tool. 2018-01-17 18:27:41 +00:00
index [clangd] Change index scope convention from "outer::inner" to "outer::inner::" 2018-01-19 22:18:21 +00:00
tool [clangd] Add static index for the global code completion. 2018-01-10 14:44:34 +00:00
CMakeLists.txt [clangd] Merge results from static/dynamic index. 2018-01-15 12:33:00 +00:00
ClangdLSPServer.cpp [clangd] Don't crash on LSP calls for non-added files 2018-01-17 12:30:24 +00:00
ClangdLSPServer.h [clangd] Pass Context to onDiagnosticsReady callback 2018-01-10 17:59:27 +00:00
ClangdServer.cpp [clangd] Don't crash on LSP calls for non-added files 2018-01-17 12:30:24 +00:00
ClangdServer.h [clangd] Don't crash on LSP calls for non-added files 2018-01-17 12:30:24 +00:00
ClangdUnit.cpp [clangd] Add more symbol information for code completion. 2018-01-09 17:32:00 +00:00
ClangdUnit.h [clangd] Add more symbol information for code completion. 2018-01-09 17:32:00 +00:00
ClangdUnitStore.cpp [clangd] Build dynamic index and use it for code completion. 2017-12-19 18:00:37 +00:00
ClangdUnitStore.h [clangd] Build dynamic index and use it for code completion. 2017-12-19 18:00:37 +00:00
CodeComplete.cpp [clangd] Change index scope convention from "outer::inner" to "outer::inner::" 2018-01-19 22:18:21 +00:00
CodeComplete.h [clangd] Remove unused IncludeGlobals completion option, always pass true to sema 2018-01-18 15:31:30 +00:00
CodeCompletionStrings.cpp [clangd] Pull CodeCompletionString handling logic into its own file and add unit test. 2017-12-20 17:24:31 +00:00
CodeCompletionStrings.h [clangd] Pull CodeCompletionString handling logic into its own file and add unit test. 2017-12-20 17:24:31 +00:00
Compiler.cpp [clangd] Always use preamble (even stale) for code completion 2018-01-18 15:17:00 +00:00
Compiler.h [clangd] Always use preamble (even stale) for code completion 2018-01-18 15:17:00 +00:00
Context.cpp [clangd] Introduced a Context that stores implicit data 2017-12-12 11:16:45 +00:00
Context.h [clangd] Try to workaround MSVC compilation failure. 2017-12-13 13:43:47 +00:00
DraftStore.cpp Fixing compilation failures on buildbots. 2017-05-16 10:06:20 +00:00
DraftStore.h [clangd] Serialize onDiagnosticsReady callbacks for the same file. 2017-09-20 12:58:55 +00:00
Function.h [clangd] Made UniqueFunction's bool conversion explicit 2017-12-20 14:06:05 +00:00
FuzzyMatch.cpp [clangd] Fix memcpy(?, null, 0) UB by switching to std::copy 2018-01-19 15:03:49 +00:00
FuzzyMatch.h [clangd] Merge index-provided completions with those from Sema. 2018-01-19 14:34:02 +00:00
GlobalCompilationDatabase.cpp [clangd] Simplify GlobalCompilationDatabase, cache missing GCDs 2017-12-22 09:47:34 +00:00
GlobalCompilationDatabase.h [clangd] Simplify GlobalCompilationDatabase, cache missing GCDs 2017-12-22 09:47:34 +00:00
JSONExpr.cpp [clangd] Put all #includes in one block in clangd source files. NFC 2017-12-14 21:22:03 +00:00
JSONExpr.h [clangd] Put all #includes in one block in clangd source files. NFC 2017-12-14 21:22:03 +00:00
JSONRPCDispatcher.cpp Avoid int to string conversion in Twine or raw_ostream contexts. 2017-12-28 16:58:54 +00:00
JSONRPCDispatcher.h [clangd] Implemented logging using Context 2017-12-13 12:51:22 +00:00
Logger.cpp [clangd] Output log messages to stderr when not configured (e.g. in tests). NFC 2018-01-18 10:24:01 +00:00
Logger.h [clangd] Output log messages to stderr when not configured (e.g. in tests). NFC 2018-01-18 10:24:01 +00:00
Path.h Restored r303067 and fixed failing test. 2017-05-16 09:38:59 +00:00
Protocol.cpp [clangd] Get rid of unnecessary global variable. No functionality change. 2017-12-28 15:03:02 +00:00
Protocol.h [clangd] Incorporate fuzzy-match into result rankings. 2018-01-12 16:16:09 +00:00
ProtocolHandlers.cpp [clangd] Implemented logging using Context 2017-12-13 12:51:22 +00:00
ProtocolHandlers.h [clangd] Implemented logging using Context 2017-12-13 12:51:22 +00:00
SourceCode.cpp [clangd] Expose offset <-> LSP position functions, and fix bugs 2017-12-19 12:23:48 +00:00
SourceCode.h [clangd] Expose offset <-> LSP position functions, and fix bugs 2017-12-19 12:23:48 +00:00
Trace.cpp [clangd] Put all #includes in one block in clangd source files. NFC 2017-12-14 21:22:03 +00:00
Trace.h [clangd] Changed tracing interfaces 2017-12-14 15:33:38 +00:00
XRefs.cpp [clangd] Don't navigate to forward class declaration when go to definition. 2018-01-12 14:21:10 +00:00
XRefs.h [clangd] Split findDefs/highlights into XRefs, from ClangdUnit. NFC 2017-12-19 17:06:07 +00:00