- Add functions

- Code improvements
This commit is contained in:
Stone-Red-Code
2021-11-19 20:49:55 +01:00
parent 812b780942
commit 2a7e8074ba
27 changed files with 356 additions and 156 deletions
+12
View File
@@ -0,0 +1,12 @@
namespace YesNt.Interpreter.Enums
{
internal enum Priority
{
Highest,
VeryHigh,
High,
Normal,
Low,
VeryLow
}
}
+10
View File
@@ -0,0 +1,10 @@
namespace YesNt.Interpreter.Enums
{
public enum SearchMode
{
StartOfLine,
EndOfLine,
Contains,
Exact
}
}
+10
View File
@@ -0,0 +1,10 @@
namespace YesNt.Interpreter.Enums
{
public enum SpaceAround
{
StartEnd,
Start,
End,
None
}
}