コード例 #1
0
 public static void AfterFunction(FLProgram program, FLDebuggerEvents.FunctionRunEventArgs args)
 {
     Debugger.ForEach(x => x.AfterFunction(program, args));
     HandleEventReturn(args);
 }
コード例 #2
0
 public static void OnFunctionStepInto(FLProgram program, FLDebuggerEvents.FunctionRunEventArgs args)
 {
     Debugger.ForEach(x => x.OnFunctionStepInto(program, args));
     HandleEventReturn(args);
 }