================
@@ -128,5 +128,8 @@ def detailed_print(self) -> List[str]:
if self.watches:
lines.append(f"Variables:")
for value in sorted(self.watches.values(), key=lambda v:
v.expression):
- lines.append(f" {value}")
+ if not value.sub_values:
+ lines.append(f" {value}")
+ else:
+ value.dump_nested(lines, 1)
----------------
OCHyams wrote:
nit: invert the if to avoid the negative check?
https://github.com/llvm/llvm-project/pull/202545
_______________________________________________
llvm-branch-commits mailing list
[email protected]
https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-branch-commits