Added initial MarkupDataMapping codegen

This commit is contained in:
Yoshi Askharoun
2022-06-12 21:21:29 -05:00
parent 5741116340
commit 9461773d02
5 changed files with 97 additions and 2 deletions
+12 -1
View File
@@ -7,7 +7,18 @@ namespace SimpleDebugClient
static void Main(string[] args)
{
Bridge bridge = new(OwlCore.Remoting.RemotingMode.Client);
while (true) ;
bridge.DispatcherStep += Bridge_DispatcherStep;
bridge.InterpreterStep += Bridge_InterpreterStep;
}
private static void Bridge_DispatcherStep(string obj)
{
Console.WriteLine(obj);
}
private static void Bridge_InterpreterStep(object? sender, Microsoft.Iris.Debug.Data.InterpreterEntry e)
{
Console.WriteLine(e);
}
}
}