Mono.Debugger.Backend.SingleSteppingEngine.PushOperationNoExec C# (CSharp) Method

PushOperationNoExec() protected method

protected PushOperationNoExec ( System.Operation operation ) : void
operation System.Operation
return void
        void PushOperationNoExec(Operation operation)
        {
            if (current_operation != null)
                current_operation.PushOperation (operation);
            else
                current_operation = operation;
        }
SingleSteppingEngine