namespace YesNt.Interpreter.Enums;
///
/// Specifies which sides of a statement keyword must be surrounded by a space when matching.
///
public enum SpaceAround
{
/// A space is required both before and after the keyword.
StartEnd,
/// A space is required before the keyword only.
Start,
/// A space is required after the keyword only.
End,
/// No surrounding spaces are required.
None
}