-
Notifications
You must be signed in to change notification settings - Fork 0
Token reference
Benjozork edited this page Nov 17, 2018
·
1 revision
| Token | Actual character | Notes |
|---|---|---|
| OBJECT_START | { | The start of an object |
| OBJECT_END | } | The end of an object |
| ARRAY_START | [ | The start of an array |
| ARRAY_END | ] | The end of an array |
| ENTRY_SEPARATOR | , | Separates two entries or values |
| VALUE_ASSIGNMENT | : | Assigns a value to a key |
| STRING_LITERAL_DELIM | " | Wraps string values |
| CHAR_LITERAL_DELIM | ' | Wraps char values |
| NUMBER_TOKEN | "Ee+-.0123456789" | Used when an illegal token is used in a number |
| ABSOLUTE_VALUE_TOKEN | "tfTF" or any number token | Used when an illegal token is used in a bool value or number |