Enumeration representing possible token types used in the module.
You can find more information in comments below.
enum class TokenType
{
Unknown, // Unknown token
String, // String or comment
Integer, // Integer (binary, octal, hexadecimal, decimal, etc)
Float, // Float (hexadecimal, decimal, etc)
Operator, // Operator
Identifier, // Identifier
Group // Group of the same meaning operators
};
Namespace: | nitisa::script |
Include: | Nitisa/Modules/Script/Core/TokenType.h |