mirror of
https://github.com/ZuneDev/MicrosoftIris.git
synced 2026-07-27 13:13:29 -07:00
Implement basic interpreter execution controls
This commit is contained in:
@@ -4,15 +4,17 @@ namespace Microsoft.Iris.Debug;
|
||||
|
||||
internal interface IDebuggerServer
|
||||
{
|
||||
InterpreterCommand DebuggerCommand { get; set; }
|
||||
|
||||
/// <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);
|
||||
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);
|
||||
void LogDispatcher(string message);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user