================
@@ -1751,6 +1752,7 @@ static std::optional<HierarchyItem> 
symbolToHierarchyItem(const Symbol &S,
   }
   HierarchyItem HI;
   HI.name = std::string(S.Name);
+  HI.detail = (S.Scope + S.Name).str();
----------------
i-garrison wrote:

adding signature looks a bit more helpful, maybe one day add return type info 
too
```suggestion
  HI.detail = (S.Scope + S.Name + S.Signature).str();
```

https://github.com/llvm/llvm-project/pull/77556
_______________________________________________
cfe-commits mailing list
cfe-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

Reply via email to