Exemplo n.º 1
0
        public Node InsertTableTransition_AndCreateAnEndState(Node ptr, TokenNFATable nfa)
        {
            this.InsertTableTransition(ptr, nfa);

            ptr = EndState;
            var end = this.CreateNode();

            this.AddTransition(ptr, end);

            return(end);
        }