コード例 #1
0
        /// <summary>
        /// Step out of the current method
        /// </summary>
        public void StepOut(DebugThread thread)
        {
            DLog.Debug(DContext.VSDebuggerComCall, "Dot42Debugger.StepOut");
            var stepDepth = Jdwp.StepDepth.Out;

            StepAsync(new StepRequest(thread, stepDepth));
        }
コード例 #2
0
ファイル: ThreadsPad.cs プロジェクト: Xtremrules/dot42
 internal ThreadWrapper(DebugThread thread)
 {
     this.thread = thread;
 }
コード例 #3
0
ファイル: DebugProcess.cs プロジェクト: Xtremrules/dot42
 /// <summary>
 /// Step over the current call
 /// </summary>
 public void StepOver(DebugThread thread)
 {
     DLog.Debug(DContext.VSDebuggerComCall, "Dot42Debugger.StepOver");
     var stepDepth = Jdwp.StepDepth.Over;
     StepAsync(new StepRequest(thread, stepDepth));
 }