sequence/table visualization test in mule

This commit is contained in:
Ryan Fleury
2025-04-17 16:29:38 -07:00
parent 79b6ee4959
commit 2925161c3a
+7 -3
View File
@@ -330,7 +330,8 @@ type_coverage_eval_tests(void)
Basics *pointer_to_basics = &basics;
Basics **pointer_to_pointer_to_basics = &pointer_to_basics;
Fixed_Array fixed = {
Fixed_Array fixed =
{
{
{ 3, 4.f},
{ 5, 6.f},
@@ -344,7 +345,8 @@ type_coverage_eval_tests(void)
},
9
};
Pair memory_[] = {
Pair memory_[] =
{
{100, 1.f},
{101, 2.f},
{102, 4.f},
@@ -352,11 +354,13 @@ type_coverage_eval_tests(void)
{104, 16.f},
{105, 32.f},
};
Dynamic_Array dynamic = {
Dynamic_Array dynamic =
{
memory_,
6
};
raddbg_pin(table(sequence(6), fixed.pairs[$], memory_[$]));
raddbg_pin(basics);
raddbg_pin(fixed);
raddbg_pin(pointer);