Antlr4.Codegen.Model.Sync.Sync C# (CSharp) Method

Sync() public method

public Sync ( OutputModelFactory factory, GrammarAST blkOrEbnfRootAST, Antlr4.Runtime.Misc.IntervalSet expecting, int decision, string position ) : Antlr4.Tool.Ast
factory OutputModelFactory
blkOrEbnfRootAST Antlr4.Tool.Ast.GrammarAST
expecting Antlr4.Runtime.Misc.IntervalSet
decision int
position string
return Antlr4.Tool.Ast
        public Sync(OutputModelFactory factory,
                    GrammarAST blkOrEbnfRootAST,
                    IntervalSet expecting,
                    int decision,
                    string position)
            : base(factory, blkOrEbnfRootAST)
        {
            this.decision = decision;
            //		this.expecting = factory.createExpectingBitSet(ast, decision, expecting, position);
            //		factory.defineBitSet(this.expecting);
        }
    }
Sync