First pass at debug adapter support

This commit is contained in:
Joshua "Yoshi" Askharoun
2025-11-30 13:37:34 -06:00
parent 61ff45aee5
commit 1ab545d4e2
6 changed files with 50 additions and 12 deletions
+3 -1
View File
@@ -8,6 +8,8 @@ public interface IDebuggerState
void Start();
InterpreterCommand DebuggerCommand { get; set; }
//IObservableCollection<Breakpoint> Breakpoints { get; }
}
public interface IRemoteDebuggerState : IDebuggerState
@@ -15,7 +17,7 @@ public interface IRemoteDebuggerState : IDebuggerState
/// <summary>
/// The URI the client is connected to.
/// </summary>
public Uri ConnectionUri { get; }
public string ConnectionString { get; }
/// <summary>
/// Fired when a connection is established.