Prototype complete InterpreterEntry serialization

This commit is contained in:
Yoshi Askharoun
2023-05-24 10:14:07 -05:00
parent 141a2200dd
commit bcf9b83f54
6 changed files with 117 additions and 62 deletions
+4 -2
View File
@@ -8,7 +8,7 @@ internal class Program
{
static IDebuggerClient? Debugger { get; set; }
static void Main(string[] args)
static int Main(string[] args)
{
string connectionString = args.Length >= 2
? args[1] : "tcp://127.0.0.1:5556";
@@ -17,10 +17,12 @@ internal class Program
Debugger = new ZmqDebuggerClient(connectionString);
Debugger.DispatcherStep += Debugger_DispatcherStep;
//Debugger.InterpreterStep += Debugger_InterpreterStep;
Debugger.InterpreterStep += Debugger_InterpreterStep;
Console.WriteLine("Listening for debug messages. Press Ctrl-C to exit.");
Console.ReadLine();
return 0;
}
private static void Console_CancelKeyPress(object sender, ConsoleCancelEventArgs e)