[PATCH] D110130: [clangd] Semantic highlighting for lambda init-capture
Nathan Ridge via Phabricator via cfe-commits
cfe-commits at lists.llvm.org
Tue Sep 21 00:44:34 PDT 2021
nridge added inline comments.
================
Comment at: clang-tools-extra/clangd/SemanticHighlighting.cpp:522
+ // is the same as the location of the declared name itself.
+ if (StartLoc != D->getLocation()) {
+ auto &Tok =
----------------
Note, I initially tried `D->getTypeSpecStartLoc() != D->getTypeSpecEndLoc()`, but it turns out they are equal both in the init-capture case and in the regular `auto` case, so that check cannot be used to discriminate between the two.
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D110130/new/
https://reviews.llvm.org/D110130
More information about the cfe-commits
mailing list