using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Cosmos.IL2CPU.API
{
///
/// Method Attribute used to disable the outputing of the call to the DebugStub in that method
///
[AttributeUsage(AttributeTargets.Method, AllowMultiple = false, Inherited = false)]
public sealed class DebugStubAttribute : Attribute
{
///
/// Set to true to disable DebugStub
///
public bool Off = false;
}
}