Files
YesNt-Interpreter/YesNt.Interpreter/Attributes/StaticStatementAttribute.cs
T
Stone_Red 29bbcebf74 Change code flow and variable statements
- Labels (`lbl`) in functions are now local
- Fix code smell problems
2022-03-31 12:56:35 +02:00

13 lines
349 B
C#

using System;
using YesNt.Interpreter.Enums;
namespace YesNt.Interpreter.Attributes
{
[AttributeUsage(AttributeTargets.Method, AllowMultiple = false)]
internal class StaticStatementAttribute : Attribute
{
public bool ExecuteInSearchMode { get; set; }
public Priority Priority { get; set; } = Priority.Normal;
}
}