From 2925161c3ac92d2246d76b1d362a39a984a20738 Mon Sep 17 00:00:00 2001 From: Ryan Fleury Date: Thu, 17 Apr 2025 16:29:38 -0700 Subject: [PATCH] sequence/table visualization test in mule --- src/mule/mule_main.cpp | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/src/mule/mule_main.cpp b/src/mule/mule_main.cpp index cac984ce..3e1d6cfe 100644 --- a/src/mule/mule_main.cpp +++ b/src/mule/mule_main.cpp @@ -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);