public void MarkTable(GearsHashTable table) { foreach (GearsValue value in table.AllValues) { MarkValue(value); } }
internal Gears() { _Frames = new GearsCallFrame[FRAMES_MAX]; _Stack = new GearsValue[STACK_MAX]; _Heap = new GearsObj[HEAP_MAX]; Globals = new GearsHashTable(); }