[clang-tools-extra] LSP 3.18 - Symbol Tags (PR #167536)

Nathan Ridge via cfe-commits cfe-commits at lists.llvm.org
Mon Jan 19 23:23:34 PST 2026


================
@@ -23,13 +23,210 @@
 #include "llvm/ADT/StringRef.h"
 #include <limits>
 #include <optional>
-#include <tuple>
 
 #define DEBUG_TYPE "FindSymbols"
 
 namespace clang {
 namespace clangd {
 
+namespace {
+SymbolTags toSymbolTagBitmask(const SymbolTag ST) {
----------------
HighCommander4 wrote:

I think it makes sense to expose this function in `FindSymbols.h`, given that `SemanticHighlighting.cpp` also uses it (and more generally, that it's needed to make practical use of the result of `computeSymbolTags()`)

https://github.com/llvm/llvm-project/pull/167536


More information about the cfe-commits mailing list