コード例 #1
0
ファイル: Automata.AutomataStack.cs プロジェクト: Egaros/lib
            public void Eval(ExecutionPath executionPath)
            {
                var pointer = InstructionPointer;

                Node = Stack.Eval(executionPath);
                InstructionStream.Move(executionPath.LookAheadMatch.Length, ref pointer);
                InstructionPointer = pointer;
            }