totalLLLookaheadOps property

int totalLLLookaheadOps

Gets the total number of LL lookahead operations across all decisions made during parsing. This value is the sum of {@link DecisionInfo#LL_TotalLook} for all decisions.

Implementation

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