Antlr4.Runtime.Tree.Trees.FindAllRuleNodes C# (CSharp) Method

FindAllRuleNodes() public static method

public static FindAllRuleNodes ( IParseTree t, int ruleIndex ) : ICollection
t IParseTree
ruleIndex int
return ICollection
        public static ICollection<IParseTree> FindAllRuleNodes(IParseTree t, int ruleIndex)
        {
            return FindAllNodes(t, ruleIndex, false);
        }