This commit is contained in:
Zander Thannhauser 2024-11-28 18:40:06 -06:00
parent 007a931684
commit c9346f8688
4 changed files with 37 additions and 1 deletions

View file

@ -48,3 +48,10 @@
(factorial 2)
(factorial 3)
(factorial 4)

View file

@ -60,7 +60,7 @@ struct value* gc_inc_external_refcount(
}
#endif
assert(value->externally_referenced.in_set);
assert(value->externally_referenced.in_set == true);
}
else
{
@ -72,3 +72,14 @@ struct value* gc_inc_external_refcount(
return value;
}

View file

@ -0,0 +1,11 @@
#include <debug.h>
#include "compare.h"
int compare_string_values(
const struct value* a,
const struct value* b)
{
TODO;
}

View file

@ -0,0 +1,7 @@
int compare_string_values(
const struct value* a,
const struct value* b);