Enum JSONTokenType
Denotes JSON token types. NOTE: Although called JSON, this is really a JSON superset implementation that includes extra features: comments, directives, verbatim strings(start with $), ' or " string escapes, unquoted object key names
Namespace: Azos.CodeAnalysis.JSON
Assembly: Azos.dll
Syntax
public enum JSONTokenType
Fields
| Name | Description |
|---|---|
| LITERALS_END | |
| LITERALS_START | |
| NONLANG_END | |
| NONLANG_START | |
| NUMLITERALS_END | |
| NUMLITERALS_START | |
| SYMBOLS_END | |
| SYMBOLS_START | |
| tBOF | |
| tBraceClose | |
| tBraceOpen | |
| tColon | |
| tComma | |
| tComment | |
| tDirective | |
| tDot | |
| tDoubleLiteral | |
| tEOF | |
| tFalse | |
| tIdentifier | |
| tIntLiteral | |
| tLongIntLiteral | |
| tMinus | |
| tNull | |
| tPlus | |
| tSqBracketClose | |
| tSqBracketOpen | |
| tStringLiteral | |
| tTrue | |
| tUnknown |