IAsyncDebuggerClient.cs 461 B

12345678910111213141516171819
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using MoonSharp.Interpreter;
  6. using MoonSharp.Interpreter.Debugging;
  7. namespace MoonSharp.VsCodeDebugger.DebuggerLogic
  8. {
  9. internal interface IAsyncDebuggerClient
  10. {
  11. void SendStopEvent();
  12. void OnWatchesUpdated(WatchType watchType);
  13. void OnSourceCodeChanged(int sourceID);
  14. void OnExecutionEnded();
  15. void OnException(ScriptRuntimeException ex);
  16. void Unbind();
  17. }
  18. }