getDFASizeAt method

int getDFASizeAt(
  1. int decision
)

Gets the total number of DFA states stored in the DFA cache for a particular decision.

Implementation

int getDFASizeAt(int decision) {
  final decisionToDFA = atnSimulator.decisionToDFA[decision];
  return decisionToDFA.states.length;
}