Exemple #1
0
        public override bool ExecuteFirst(State state)
        {
            var index = charSet.IndexOf(state.CurrentInput, state.IgnoreCase);

            if (index > -1)
            {
                state.Position += index;
            }
            state.InstructionIndex++;
            return(true);
        }