|
Token enum. Contains values for all the possible tokens from the InCode syntax. -
Enumeration values:
-
TIdentifier |
An Identifier, could be variable, function or object |
TStringLiteral |
A string literal (encased in quotes) |
TNumericLiteral |
A numeric literal (of any base, specified in 'size') |
TFloatLiteral |
A floating point literal (of any size, specified in 'size') |
TDataType |
A datatype indentifier (char, word, dword, etc) |
TLeftBracket |
formatting character ( |
TRightBracket |
formatting character ) |
TLeftBrace |
formatting character { |
TRightBrace |
formatting character } |
TAdd |
operator+ |
TSub |
operator- |
TDiv |
operator/ |
TMul |
operator * |
|