Antlr4.Codegen.Model.Loop.Loop C# (CSharp) Метод

Loop() публичный Метод

public Loop ( OutputModelFactory factory, GrammarAST blkOrEbnfRootAST, IList alts ) : System.Collections.Generic
factory OutputModelFactory
blkOrEbnfRootAST Antlr4.Tool.Ast.GrammarAST
alts IList
Результат System.Collections.Generic
        public Loop(OutputModelFactory factory,
                    GrammarAST blkOrEbnfRootAST,
                    IList<CodeBlockForAlt> alts)
            : base(factory, blkOrEbnfRootAST, alts)
        {
            bool nongreedy = (blkOrEbnfRootAST is QuantifierAST) && !((QuantifierAST)blkOrEbnfRootAST).GetGreedy();
            exitAlt = nongreedy ? 1 : alts.Count + 1;
        }