[Lldb-commits] [lldb] [lldb-dap] Emit more structured info along with variables (PR #75244)

Greg Clayton via lldb-commits lldb-commits at lists.llvm.org
Thu Dec 14 15:56:33 PST 2023


================
@@ -165,7 +173,14 @@ def do_test_scopes_variables_setVariable_evaluate(
                 "hasVariablesReference": True,
             },
             "pt": {
-                "equals": {"type": "PointType"},
+                "equals": {
+                    "type": "PointType",
+                },
+                **(
+                    {"$__lldb_extensions": {"equals": {"autoSummary": "{x:11, y:22}"}}}
+                    if enableAutoVariableSummaries
+                    else {}
+                ),
----------------
clayborg wrote:

This doesn't look like it is correctly encoded? Typos?

https://github.com/llvm/llvm-project/pull/75244


More information about the lldb-commits mailing list