totalLLATNLookaheadOps property

int totalLLATNLookaheadOps

Gets the total number of ATN lookahead operations for LL prediction across all decisions made during parsing.

Implementation

int get totalLLATNLookaheadOps {
  final decisions = atnSimulator.decisionInfo;
  var k = 0;
  for (var i = 0; i < decisions.length; i++) {
    k += decisions[i].LL_ATNTransitions;
  }
  return k;
}