Example #1
0
        protected override StepInResponse HandleStepInRequest(StepInArguments arguments)
        {
            try
            {
                if (session == null)
                {
                    throw new InvalidOperationException();
                }

                session.StepIn();
                return(new StepInResponse());
            }
            catch (Exception ex)
            {
                Log(ex.Message, LogCategory.DebugAdapterOutput);
                throw new ProtocolException(ex.Message, ex);
            }
        }
Example #2
0
 protected override StepInResponse HandleStepInRequest(StepInArguments arguments)
 {
     Status = StatusType.SetpIn;
     _resetEvent.Set();
     return(new StepInResponse());
 }
Example #3
0
 public Task <StepInResponse> Handle(StepInArguments request, CancellationToken cancellationToken)
 {
     Count++;
     return(Task.FromResult(new StepInResponse()));
 }
 public Task <StepInResponse> Handle(StepInArguments request, CancellationToken cancellationToken)
 {
     _debugService.StepIn();
     return(Task.FromResult(new StepInResponse()));
 }
Example #5
0
 protected override StepInResponse HandleStepInRequest(StepInArguments arguments)
 {
     this.Continue(step: true);
     return(new StepInResponse());
 }
 protected override StepInResponse HandleStepInRequest(StepInArguments arguments)
 {
     debugged.SendStep(arguments.ThreadId, StepTypes.Into);
     return(new StepInResponse());
 }
Example #7
0
 protected override StepInResponse HandleStepInRequest(StepInArguments arguments)
 {
     Controller.Step(1);
     return(new StepInResponse());
 }