Antlr4.Runtime.Atn.Transition.Transition C# (CSharp) 메소드

Transition() 보호된 메소드

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