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