Token type descriptions
Source position: jsonscanner.pp line 151
const TokenInfos: array [TJSONToken] of string = ('EOF', 'Whitespace', 'String', 'Number', 'True', 'False', 'Null', ',', ':', '{', '}', '[', ']', 'identifier', 'comment', ''); |
Array of string descriptions for each TJSONToken type. Provides human-readable names for token types, useful for debugging and error reporting. Indexed by token type enumeration values.
|
JSON token types |
|
|
JSON lexical scanner |