using System; using System.Diagnostics; namespace JetBrains.Annotations; [AttributeUsage(AttributeTargets.Method | AttributeTargets.Parameter, AllowMultiple = true)] [Conditional("JETBRAINS_ANNOTATIONS")] internal sealed class MacroAttribute : Attribute { public string Expression { get; set; } public int Editable { get; set; } public string Target { get; set; } }