mirror of
https://github.com/ZuneDev/MicrosoftIris.git
synced 2026-07-27 13:13:29 -07:00
19 lines
537 B
C#
19 lines
537 B
C#
using Microsoft.Iris.Debug.Data;
|
|
|
|
namespace Microsoft.Iris.Debug;
|
|
|
|
internal interface IDebuggerServer
|
|
{
|
|
/// <summary>
|
|
/// Logs the context, opcode, and arguments of an instruction
|
|
/// executed by <c>Microsoft.Iris.Markup.Interpreter</c>.
|
|
/// </summary>
|
|
public void LogInterpreterOpCode(object context, InterpreterEntry entry);
|
|
|
|
/// <summary>
|
|
/// Logs the string representation of a dispatcher step.
|
|
/// </summary>
|
|
/// <param name="message"></param>
|
|
public void LogDispatcher(string message);
|
|
}
|