Antlr4.Tool.Ast.GrammarAST.GetNodesWithTypePreorderDFS C# (CSharp) Method

GetNodesWithTypePreorderDFS() public method

public GetNodesWithTypePreorderDFS ( Antlr4.Runtime.Misc.IntervalSet types ) : IList
types Antlr4.Runtime.Misc.IntervalSet
return IList
        public virtual IList<GrammarAST> GetNodesWithTypePreorderDFS(IntervalSet types)
        {
            List<GrammarAST> nodes = new List<GrammarAST>();
            GetNodesWithTypePreorderDFS_(nodes, types);
            return nodes;
        }