Ejemplo n.º 1
0
        public void Apply(IStepthroughExecution execution)
        {
            execution.SetBreakpoints(breakpoints);

            switch (action)
            {
                case StepthroughAction.next:
                    execution.RunNext();
                    break;

                case StepthroughAction.run:
                    execution.RunToBreakpoint();
                    break;

                case StepthroughAction.runToEnd:
                    execution.RunToEnd();
                    break;
            }
        }
Ejemplo n.º 2
0
        public void Apply(IStepthroughExecution execution)
        {
            execution.SetBreakpoints(breakpoints);

            switch (action)
            {
            case StepthroughAction.next:
                execution.RunNext();
                break;

            case StepthroughAction.run:
                execution.RunToBreakpoint();
                break;

            case StepthroughAction.runToEnd:
                execution.RunToEnd();
                break;
            }
        }