[PATCH] D131175: [clangd] Use the "macro" semantic token for pre-defined identifiers
Christian Kandeler via Phabricator via cfe-commits
cfe-commits at lists.llvm.org
Thu Aug 18 06:45:32 PDT 2022
ckandeler updated this revision to Diff 453648.
ckandeler added a comment.
Use variable instead of macro.
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D131175/new/
https://reviews.llvm.org/D131175
Files:
clang-tools-extra/clangd/SemanticHighlighting.cpp
clang-tools-extra/clangd/unittests/SemanticHighlightingTests.cpp
Index: clang-tools-extra/clangd/unittests/SemanticHighlightingTests.cpp
===================================================================
--- clang-tools-extra/clangd/unittests/SemanticHighlightingTests.cpp
+++ clang-tools-extra/clangd/unittests/SemanticHighlightingTests.cpp
@@ -841,6 +841,12 @@
$Function_deprecated[[Foo]]($Parameter[[x]]);
}
)cpp",
+ // Predefined identifiers
+ R"cpp(
+ void $Function_decl[[Foo]]() {
+ const char *$LocalVariable_decl_readonly[[s]] = $LocalVariable_readonly_static[[__func__]];
+ }
+ )cpp",
// Explicit template specialization
R"cpp(
struct $Class_decl[[Base]]{};
Index: clang-tools-extra/clangd/SemanticHighlighting.cpp
===================================================================
--- clang-tools-extra/clangd/SemanticHighlighting.cpp
+++ clang-tools-extra/clangd/SemanticHighlighting.cpp
@@ -542,6 +542,14 @@
return Base::TraverseConstructorInitializer(Init);
}
+ bool VisitPredefinedExpr(PredefinedExpr *E) {
+ H.addToken(E->getLocation(), HighlightingKind::LocalVariable)
+ .addModifier(HighlightingModifier::Static)
+ .addModifier(HighlightingModifier::Readonly)
+ .addModifier(HighlightingModifier::FunctionScope);
+ return true;
+ }
+
bool VisitCallExpr(CallExpr *E) {
// Highlighting parameters passed by non-const reference does not really
// make sense for literals...
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D131175.453648.patch
Type: text/x-patch
Size: 1471 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/cfe-commits/attachments/20220818/42d926fc/attachment.bin>
More information about the cfe-commits
mailing list