Got dump working, to try to investigate the assoc bug. Much better

dump output, but `assoc` still doesn't work for read symbols, and
we now have a segfault on exit.
This commit is contained in:
Simon Brooke 2026-05-06 12:23:46 +01:00
parent cf655e8020
commit c29a95b00d
10 changed files with 284 additions and 411 deletions

View file

@ -19,7 +19,7 @@
#include "io/io.h"
#include "io/print.h"
// #include "memory/dump.h"
#include "memory/dump.h"
int verbosity = 0;
@ -162,7 +162,7 @@ void debug_dump_object( struct pso_pointer pointer, int level, int indent ) {
if ( level & verbosity ) {
URL_FILE *ustderr = file_to_url_file( stderr );
fwide( stderr, 1 );
// dump_object( ustderr, pointer );
dump_object( pointer );
free( ustderr );
}
#endif