Antlr4.Runtime.Atn.ParserATNSimulator.Closure C# (CSharp) Method

Closure() protected method

protected Closure ( ATNConfig config, ATNConfigSet configs, HashSet closureBusy, bool collectPredicates, bool fullCtx, bool treatEofAsEpsilon ) : void
config ATNConfig
configs ATNConfigSet
closureBusy HashSet
collectPredicates bool
fullCtx bool
treatEofAsEpsilon bool
return void
        protected void Closure(ATNConfig config,
							   ATNConfigSet configs,
							   HashSet<ATNConfig> closureBusy,
							   bool collectPredicates,
							   bool fullCtx,
							   bool treatEofAsEpsilon)
        {
            int initialDepth = 0;
            ClosureCheckingStopState(config, configs, closureBusy, collectPredicates,
                                     fullCtx,
                                     initialDepth, treatEofAsEpsilon);
        }