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