*
This commit is contained in:
parent
54d12060ec
commit
80d8f87883
18 changed files with 292 additions and 76 deletions
2
src/gc.c
2
src/gc.c
|
|
@ -101,6 +101,8 @@ V gc_collect(Vm *vm) {
|
|||
Hd *hdr = (Hd *)scan;
|
||||
switch (hdr->type) {
|
||||
// TODO: the rest of the owl
|
||||
case OBJ_STR:
|
||||
break;
|
||||
case OBJ_QUOT: {
|
||||
Bc **chunk_ptr = (Bc **)(hdr + 1);
|
||||
Bc *chunk = *chunk_ptr;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue