kadircet marked 3 inline comments as done.
kadircet added inline comments.
Comment at: clang-tools-extra/clangd/CodeComplete.cpp:98
+ case SK::TemplateTypeParm:
+ case SK::TemplateTemplateParm:
return CompletionItemKind::Class;
hokein wrote:
> I think thes
This revision was automatically updated to reflect the committed changes.
Closed by commit rG84240e0db8ab: [clang][Index] Introduce a TemplateParm
SymbolKind (authored by kadircet).
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D73696/new/
https://re
kadircet updated this revision to Diff 244619.
kadircet marked an inline comment as done.
kadircet added a comment.
- Address comments
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D73696/new/
https://reviews.llvm.org/D73696
Files:
clang-tools-ex
hokein accepted this revision.
hokein added inline comments.
This revision is now accepted and ready to land.
Comment at: clang-tools-extra/clangd/CodeComplete.cpp:98
+ case SK::TemplateTypeParm:
+ case SK::TemplateTemplateParm:
return CompletionItemKind::Class;
--
kadircet added a comment.
ping :)
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D73696/new/
https://reviews.llvm.org/D73696
___
cfe-commits mailing list
cfe-commits@lists.llvm.org
https://lists.llvm.org
kadircet marked an inline comment as done.
kadircet added inline comments.
Comment at: clang-tools-extra/clangd/Protocol.cpp:265
case index::SymbolKind::Parameter:
+ case index::SymbolKind::TemplateParm:
return SymbolKind::Variable;
sammccall wrote:
> th
kadircet updated this revision to Diff 243091.
kadircet marked 2 inline comments as done.
kadircet added a comment.
- As discussed offline, do not expose new symbol kinds to libclang
- Set types for templateparms in HoverInfo.
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
ht
sammccall added a comment.
Libclang changes need tests I think.
Comment at: clang-tools-extra/clangd/Protocol.cpp:265
case index::SymbolKind::Parameter:
+ case index::SymbolKind::TemplateParm:
return SymbolKind::Variable;
this seems kind of dubious, ma
merge_guards_bot added a comment.
{icon times-circle color=red} Unit tests: fail. 62337 tests passed, 1 failed
and 838 were skipped.
failed: libc++.std/containers/sequences/array/array_creation/to_array.fail.cpp
{icon check-circle color=green} clang-tidy: pass.
{icon times-circle color=red}
kadircet created this revision.
kadircet added a reviewer: sammccall.
Herald added subscribers: cfe-commits, usaxena95, arphaman, jkorous,
ilya-biryukov, kristof.beyls.
Herald added a project: clang.
Currently template parameters has symbolkind `Unknown`. This patch
introduces a new kind `Templat
10 matches
Mail list logo