Files
MicrosoftIris/UIX/Microsoft/Iris/Debug/IDebuggerServer.cs
T

21 lines
577 B
C#
Raw Normal View History

2023-05-22 21:44:05 -05:00
using Microsoft.Iris.Debug.Data;
namespace Microsoft.Iris.Debug;
internal interface IDebuggerServer
{
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>
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>
void LogDispatcher(string message);
2023-05-22 21:44:05 -05:00
}