View mark_sweep.cc
#include <stdio.h> | |
#include <cassert> | |
#include <stdexcept> | |
enum class ObjectType | |
{ | |
Int, | |
Pair | |
}; |