processReductions method

void processReductions()

Implementation

void processReductions() {
  do {
    stateStackTop -= (prs.rhs(currentAction) - 1);
    ra.ruleAction(currentAction);
    currentAction =
        prs.ntAction(stateStack[stateStackTop], prs.lhs(currentAction));
  } while (currentAction <= NUM_RULES);

  return;
}