mirror of
https://github.com/ZuneDev/MicrosoftIris.git
synced 2026-07-27 13:13:29 -07:00
26 lines
493 B
C#
26 lines
493 B
C#
#if !ZUNE5
|
|
|
|
using Microsoft.Iris.Debug.Data;
|
|
|
|
namespace Microsoft.Iris.Debug
|
|
{
|
|
/// <summary>
|
|
/// A dummy implementation of <see cref="IBridge"/>, used to avoid conditional
|
|
/// code in consuming libraries.
|
|
/// </summary>
|
|
public class Bridge : IBridge
|
|
{
|
|
public void LogDispatcher(string message)
|
|
{
|
|
|
|
}
|
|
|
|
public void LogInterpreterOpCode(object context, InterpreterEntry entry)
|
|
{
|
|
|
|
}
|
|
}
|
|
}
|
|
|
|
#endif
|