fix old usage of table in mule_main; resolve to value in (sequence)

This commit is contained in:
Ryan Fleury
2025-05-13 10:55:39 -07:00
parent 11c1b5277e
commit 34304280c9
2 changed files with 4 additions and 4 deletions
+1 -1
View File
@@ -2502,7 +2502,7 @@ E_TYPE_EXPAND_RANGE_FUNCTION_DEF(omit)
E_TYPE_EXPAND_INFO_FUNCTION_DEF(sequence) E_TYPE_EXPAND_INFO_FUNCTION_DEF(sequence)
{ {
E_TypeExpandInfo info = {0, eval.value.u64}; E_TypeExpandInfo info = {0, e_value_eval_from_eval(eval).value.u64};
return info; return info;
} }
+3 -3
View File
@@ -197,7 +197,7 @@ union Matrix4x4F32
{ {
float elements[4][4]; float elements[4][4];
}; };
raddbg_type_view(Matrix4x4F32, table($.elements, $[0], $[1], $[2], $[3])); raddbg_type_view(Matrix4x4F32, columns($.elements, $[0], $[1], $[2], $[3]));
union PackedF16 union PackedF16
{ {
@@ -427,7 +427,7 @@ type_coverage_eval_tests(void)
6 6
}; };
raddbg_pin(table(sequence(6), fixed.pairs[$], memory_[$])); raddbg_pin(columns(sequence(6), fixed.pairs[$], memory_[$]));
raddbg_pin(basics); raddbg_pin(basics);
raddbg_pin(fixed); raddbg_pin(fixed);
raddbg_pin(pointer); raddbg_pin(pointer);
@@ -1886,7 +1886,7 @@ fancy_viz_eval_tests(void)
{ {
5, 2, 8, 6 5, 2, 8, 6
}; };
raddbg_pin(table(node_indices, nodes[$])); raddbg_pin(columns(node_indices, nodes[$]));
//- rjf: bitmaps //- rjf: bitmaps
unsigned int background_color = 0x00000000; unsigned int background_color = 0x00000000;