Example #1
0
 public MacroExecutor(MacroModule mod, MethodInfo ep)
 {
     _module = mod;
     _entryPoint = ep;
     if(mod.DebugMode) {
         _traceWindow = new MacroTraceWindow();
         _traceWindow.AdjustTitle(mod);
         _traceWindow.Owner = GApp.Frame;
         _traceWindow.Show();
     }
 }
Example #2
0
 public MacroExecutor(MacroModule mod, MethodInfo ep)
 {
     _module     = mod;
     _entryPoint = ep;
     if (mod.DebugMode)
     {
         _traceWindow = new MacroTraceWindow();
         _traceWindow.AdjustTitle(mod);
         _traceWindow.Owner = GApp.Frame;
         _traceWindow.Show();
     }
 }
Example #3
0
 public DebugServiceImpl(MacroTraceWindow dw)
 {
     _debugWindow = dw;
 }
Example #4
0
 public DebugServiceImpl(MacroTraceWindow dw)
 {
     _debugWindow = dw;
 }