Antlr4.Runtime.Atn.ParseInfo.getTotalSLLLookaheadOps C# (CSharp) Method

getTotalSLLLookaheadOps() public method

public getTotalSLLLookaheadOps ( ) : long
return long
        public long getTotalSLLLookaheadOps()
        {
            DecisionInfo[] decisions = atnSimulator.getDecisionInfo();
            long k = 0;
            for (int i = 0; i < decisions.Length; i++)
            {
                k += decisions[i].SLL_TotalLook;
            }
            return k;
        }