Ejemplo n.º 1
0
 public void OnInstructionStepInto(FLProgram program, FLDebuggerEvents.InstructionRunEventArgs args)
 {
     if (Debuggers.ContainsKey(program))
     {
         Debuggers[program].OnInstructionStepInto(args);
     }
 }
Ejemplo n.º 2
0
 public void AfterInstruction(FLProgram program, FLDebuggerEvents.InstructionRunEventArgs args)
 {
     if (Debuggers.ContainsKey(program))
     {
         Debuggers[program].AfterInstruction(args);
     }
 }
 public void OnInstructionStepInto(FLDebuggerEvents.InstructionRunEventArgs args)
 {
     ProcessEvent(args.Instruction);
 }
 public void AfterInstruction(FLDebuggerEvents.InstructionRunEventArgs args)
 {
     ProcessEvent(args.Instruction);
 }