prep watch windows for floating query stacks; fix member/array-index generated-expression visualization

This commit is contained in:
Ryan Fleury
2025-04-24 13:39:26 -07:00
parent a9685e6b9d
commit d0cbaee344
5 changed files with 102 additions and 81 deletions
+1 -1
View File
@@ -1295,7 +1295,7 @@ e_push_irtree_and_type_from_expr(Arena *arena, E_IRTreeAndType *root_overridden,
e_expr_push_child(call, first_arg);
for(E_Expr *arg = lhs->next; arg != &e_expr_nil; arg = arg->next)
{
e_expr_push_child(call, e_expr_ref(arena, arg));
e_expr_push_child(call, e_expr_copy(arena, arg));
}
result = e_push_irtree_and_type_from_expr(arena, overridden, disallow_autohooks, disallow_chained_fastpaths, call);
E_MsgList new_msgs = {0};