Files
MicrosoftIris/UIX.Debug/Bridge.compat.cs
T

26 lines
496 B
C#

#if !OPENZUNE
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