using Microsoft.Iris.Debug.Data; namespace Microsoft.Iris.Debug; internal interface IDebuggerServer { /// /// Logs the context, opcode, and arguments of an instruction /// executed by Microsoft.Iris.Markup.Interpreter. /// public void LogInterpreterOpCode(object context, InterpreterEntry entry); /// /// Logs the string representation of a dispatcher step. /// /// public void LogDispatcher(string message); }