Esempio n. 1
0
        public virtual void Execute(Parser.ParsingState state)
        {
            var next = state.Next();

            if (next == null)
            {
                throw new InternalNSLExcpetion("Next node is null, despite not continued, this should not happen");
            }

            OnToken(next, state);
        }