FMX.ASE.Lexer.TASEToken
Delphi
TASEToken = (Unknown, EndOfFile, KeyWord, Ident, &String, Integer, Float, Colon, OpenBracket, CloseBracket, Comma);
C++
enum class DECLSPEC_DENUM TASEToken : unsigned char { Unknown, EndOfFile, KeyWord, Ident, String, Integer, Float, Colon, OpenBracket, CloseBracket, Comma };
Properties
Type | Visibility | Source | Unit | Parent |
---|---|---|---|---|
enum | public | FMX.ASE.Lexer.pas FMX.ASE.Lexer.hpp |
FMX.ASE.Lexer | FMX.ASE.Lexer |
Description
Represents a type of an ASE token.
TASEToken is an enumeration that describes the types of tokens that can appear in an .ase file.
Value | Meaning |
---|---|
|
Unknown token |
|
The end of the file |
|
Key word |
|
Identifier |
|
String value |
|
Integer value |
|
Float value |
|
Colon |
|
Open curly bracket |
|
Close curly bracket |
|
Comma |