namespace BytecodeApi.Lexer;
///
/// Specifies the types of brackets that is used in various parsing and search methods.
///
[Flags]
public enum BracketType
{
///
/// Brackets of any kind are ignored and treated as normal tokens.
///
None = 0,
///
/// Parentheses are included.
///
Parenthesis = 1,
///
/// Brackets are included.
///
Bracket = 2,
///
/// Curly braces are included.
///
Brace = 4,
///
/// Parentheses, brackets and curly braces are included.
///
All = Parenthesis | Bracket | Brace
}