namespace YesNt.Interpreter.Enums;
///
/// Determines where in a source line the interpreter searches for a statement keyword.
///
public enum SearchMode
{
/// The keyword must appear at the beginning of the line.
StartOfLine,
/// The keyword must appear at the end of the line.
EndOfLine,
/// The keyword may appear anywhere in the line.
Contains,
/// The entire line must exactly match the keyword.
Exact
}