Antlr4.Runtime.Atn.DecisionEventInfo.DecisionEventInfo C# (CSharp) Method

DecisionEventInfo() public method

public DecisionEventInfo ( int decision, SimulatorState state, ITokenStream input, int startIndex, int stopIndex, bool fullCtx ) : Antlr4.Runtime
decision int
state SimulatorState
input ITokenStream
startIndex int
stopIndex int
fullCtx bool
return Antlr4.Runtime
        public DecisionEventInfo(int decision, SimulatorState state, ITokenStream input, int startIndex, int stopIndex, bool fullCtx)
        {
            this.decision = decision;
            this.fullCtx = fullCtx;
            this.stopIndex = stopIndex;
            this.input = input;
            this.startIndex = startIndex;
            this.state = state;
        }
DecisionEventInfo