2023-05-22 21:44:05 -05:00
|
|
|
using Microsoft.Iris.Debug.Data;
|
|
|
|
|
|
|
|
|
|
namespace Microsoft.Iris.Debug;
|
|
|
|
|
|
|
|
|
|
internal interface IDebuggerServer
|
|
|
|
|
{
|
2023-06-02 00:09:51 -05:00
|
|
|
InterpreterCommand DebuggerCommand { get; set; }
|
|
|
|
|
|
2023-05-22 21:44:05 -05:00
|
|
|
/// <summary>
|
|
|
|
|
/// Logs the context, opcode, and arguments of an instruction
|
|
|
|
|
/// executed by <c>Microsoft.Iris.Markup.Interpreter</c>.
|
|
|
|
|
/// </summary>
|
2023-06-02 00:09:51 -05:00
|
|
|
void LogInterpreterOpCode(object context, InterpreterEntry entry);
|
2023-05-22 21:44:05 -05:00
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Logs the string representation of a dispatcher step.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="message"></param>
|
2023-06-02 00:09:51 -05:00
|
|
|
void LogDispatcher(string message);
|
2023-05-22 21:44:05 -05:00
|
|
|
}
|