Files
2025-03-15 19:52:41 +10:00

35 lines
475 B
C#

namespace XDLCompiler;
public enum TokenId
{
None,
Unknown,
Identifier,
StringLiteral,
CharacterLiteral,
Number,
OpeningBrace,
ClosingBrace,
OpeningBracket,
ClosingBracket,
OpeningParenthesis,
ClosingParenthesis,
Plus,
Minus,
Semicolon,
Colon,
Asterisk,
Ampersand,
Period,
Equals,
Comma,
Enum,
Struct,
Class,
Union,
Interface,
Namespace,
Const,
Import,
}