Step() public method

public Step ( ThreadingModel model, StepMode mode ) : CommandResult
model ThreadingModel
mode StepMode
return CommandResult
Beispiel #1
0
 protected override CommandResult DoStep(Thread thread, ThreadingModel model, ScriptingContext context)
 {
     context.Interpreter.Style.IsNative = false;
     return thread.Step (model, StepMode.SourceLine, null);
 }
Beispiel #2
0
 protected override CommandResult DoStep(Thread thread, ThreadingModel model, ScriptingContext context)
 {
     context.Interpreter.Style.IsNative = true;
     return thread.Step (model, Native ? StepMode.NativeInstruction : StepMode.SingleInstruction, null);
 }
Beispiel #3
0
 public void Continue(Thread thread)
 {
     thread.Step (ThreadingModel, StepMode.Run);
 }
Beispiel #4
0
 protected override CommandResult DoStep(Thread thread, ThreadingModel model, ScriptingContext context)
 {
     return thread.Step (model, StepMode.Run, null);
 }
Beispiel #5
0
 public void StepOut(Thread thread)
 {
     thread.Step (ThreadingModel, StepMode.Finish);
 }
Beispiel #6
0
 public void StepOver(Thread thread)
 {
     thread.Step (ThreadingModel, StepMode.NextLine);
 }
Beispiel #7
0
 public void StepInto(Thread thread)
 {
     thread.Step (ThreadingModel, StepMode.SourceLine);
 }
Beispiel #8
0
 public void StepOut(Thread thread)
 {
     thread.Step(ThreadingModel, StepMode.Finish);
 }
Beispiel #9
0
 public void StepOver(Thread thread)
 {
     thread.Step(ThreadingModel, StepMode.NextLine);
 }
Beispiel #10
0
 public void StepInto(Thread thread)
 {
     thread.Step(ThreadingModel, StepMode.SourceLine);
 }
Beispiel #11
0
 public void Continue(Thread thread)
 {
     thread.Step(ThreadingModel, StepMode.Run);
 }