Antlr4.Runtime.Atn.ATNConfig.CheckNonGreedyDecision C# (CSharp) Method

CheckNonGreedyDecision() private static method

private static CheckNonGreedyDecision ( Antlr4 source, ATNState target ) : bool
source Antlr4
target ATNState
return bool
        private static bool CheckNonGreedyDecision(Antlr4.Runtime.Atn.ATNConfig source, ATNState target)
        {
            return source.PassedThroughNonGreedyDecision || target is DecisionState && ((DecisionState)target).nonGreedy;
        }