Antlr4.Tool.Ast.GrammarAST.GetNodesWithTypePreorderDFS C# (CSharp) 메소드

GetNodesWithTypePreorderDFS() 공개 메소드

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