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

RangeTransition() public method

public RangeTransition ( ATNState target, int from, int to ) : Antlr4.Runtime.Atn
target ATNState
from int
to int
return Antlr4.Runtime.Atn
        public RangeTransition(ATNState target, int from, int to)
            : base(target)
        {
            this.from = from;
            this.to = to;
        }