private void HandleDebuggerBreakHit(object sender, DebuggerBreak e)
 {
     breakHitEvent.Set();
     LastBreak = e;
 }
Esempio n. 2
0
 private string FormatBreak(DebuggerBreak br) => FormatBreak(br.Location.FileName, br.Location.Line);
Esempio n. 3
0
 public void HandleBreakHit(DebuggerBreak debuggerBreak)
 {
     console.Info($"Debugger stopped at {FormatBreak(debuggerBreak)}.");
     console.Info(runtime.CurrentScript.GetLine(debuggerBreak.Location.Line - 1));
 }
 protected void fireDebuggerBreak(Position position)
 {
     DebuggerBreak?.Invoke(position);
 }