mirror of
https://github.com/XWine1/XDLCompiler.git
synced 2026-07-24 12:32:21 -07:00
35 lines
475 B
C#
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,
|
|
}
|