hokein added a comment.

mostly good.



================
Comment at: clang-tools-extra/clangd/SemanticHighlighting.cpp:122
     }
+    if(isa<EnumConstantDecl>(D)) {
+      addToken(Loc, HighlightingKind::EnumConstant);
----------------
nit: clang-format.


================
Comment at: clang-tools-extra/clangd/SemanticHighlighting.cpp:257
+  case HighlightingKind::EnumConstant:
+    return "constant.other.enum.cpp";
   case HighlightingKind::Namespace:
----------------
could you check the tm scope on vscode? They seem to use 
`variable.other.enummember`.


================
Comment at: clang-tools-extra/clangd/unittests/SemanticHighlightingTests.cpp:107
     R"cpp(
       enum class $Enum[[E]] {};
       enum $Enum[[EE]] {};
----------------
since we have a dedicated testcase for `enum`, could you extend the testcase 
here?


Repository:
  rG LLVM Github Monorepo

CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D64624/new/

https://reviews.llvm.org/D64624



_______________________________________________
cfe-commits mailing list
cfe-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

Reply via email to