allocateOtherStacks method

void allocateOtherStacks()

Implementation

void allocateOtherStacks() {
  locationStack = List.filled(stateStack.length, 0);
  parseStack = List.filled(stateStack.length, null);
  return;
}