================
@@ -193,9 +193,14 @@ def _get_dict_actual_result(
None,
)
)
- sub_expect_results[sub_expect] = DebuggerExpectMatch(
- self.expect, sub_expected, value,
self.provisional_match_context
- )
+ if value is None:
+ sub_expect_results[sub_expect] = DebuggerExpectMatch(
+ self.expect, None, None, self.provisional_match_context
+ )
+ else:
+ sub_expect_results[sub_expect] = get_expect_match(
+ self.expect, sub_expected, value,
self.provisional_match_context
+ )
----------------
OCHyams wrote:
would you mind explaining how the change implements/allows the behaviour, for
the dexter-unenlightened?
https://github.com/llvm/llvm-project/pull/204160
_______________________________________________
llvm-branch-commits mailing list
[email protected]
https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-branch-commits