Token Type
enum TokenType : Enum<TokenDescriptor.TokenType> , IntegerEnumSlotDescriptionEnum
Content copied to clipboard
An enumeration that lists the basic kinds of tokens that can be encountered.
Author
Mark van Gulik
Entries
Link copied to clipboard
Content copied to clipboard
A token representing one or more whitespace characters separating other tokens. These tokens are skipped by the normal parsing machinery, although some day we'll provide a notation within method names to capture whitespace tokens as arguments.
Link copied to clipboard
Content copied to clipboard
A token that is the entirety of an Avail method/class comment. This is text contained between slash-asterisk and asterisk-slash. Only applicable for CommentTokenDescriptor.
Link copied to clipboard
Content copied to clipboard
A literal token, detected at lexical scanning time. Only applicable for a LiteralTokenDescriptor.
Link copied to clipboard
Content copied to clipboard
A special type of token that is appended to the actual tokens of the file to simplify end-of-file processing.