[PATCH] D139926: [clangd] Add semantic token for angle brackets

Nathan Ridge via Phabricator via cfe-commits cfe-commits at lists.llvm.org
Fri Jan 27 00:13:01 PST 2023


nridge added a comment.

Function calls are still missing some cases:

  template <typename> void free();
  
  template <typename T>
  struct A {
    template <typename> void mem();
  };
  
  void foo() {
    A<int> a;
    a.mem<int>();  // <--
  }
  
  template<typename T>
  void bar() {
      free<T>();  // <--
  
      A<int> a;
      a.mem<T>();  // <--
  
      A<T> b;
      b.template mem<T>();  // <--
  }


Repository:
  rG LLVM Github Monorepo

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

https://reviews.llvm.org/D139926



More information about the cfe-commits mailing list