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

Transition() protected method

protected Transition ( ATNState target ) : System
target ATNState
return System
        protected internal Transition(ATNState target)
        {
            if (target == null)
            {
                throw new ArgumentNullException("target cannot be null.");
            }
            this.target = target;
        }