[Lldb-commits] [PATCH] D138259: Add the ability to see when a type in incomplete.

Greg Clayton via Phabricator via lldb-commits lldb-commits at lists.llvm.org
Mon Nov 21 15:39:27 PST 2022


clayborg added a comment.

In D138259#3942246 <https://reviews.llvm.org/D138259#3942246>, @yinghuitan wrote:

> Also, do you have any plan to record this happening in statistics dump so that our telemetry can report it?

I do, that will be a separate patch I will make once this patch is in.



================
Comment at: lldb/source/Core/ValueObject.cpp:600
+  // no member variables or member functions will be available.
+  if (GetCompilerType().IsForcefullyCompleted()) {
+      destination = "<incomplete type>";
----------------
yinghuitan wrote:
> Is this shown in lldb-vscode? If so, can I suggest we add a VSCode test for it if not too much work? 
It will show up as the summary, no need to duplicate the functionality in another location


Repository:
  rG LLVM Github Monorepo

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

https://reviews.llvm.org/D138259



More information about the lldb-commits mailing list