LexerSymbols

- Documented
- Formatted
This commit is contained in:
Tristan B. Velloza Kildaire 2023-12-24 00:30:34 +02:00
parent d7d25c25f4
commit b17d360e62
1 changed files with 7 additions and 1 deletions

View File

@ -75,7 +75,13 @@ public interface LexerInterface
public Token[] getTokens();
}
public enum LexerSymbols: char {
/**
* Human-readable names assigned
* to commonly used character
* constants
*/
public enum LexerSymbols : char
{
L_PAREN = '(',
R_PAREN = ')',
SEMI_COLON = ';',