[This is preliminary documentation and is subject to change.]
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: NFX.CodeAnalysis.JSONAssembly: NFX (in NFX.dll) Version: 3.0.0.1 (3.0.0.1)
Syntax
Members
| Member name | Value | Description | |
|---|---|---|---|
| tUnknown | 0 | ||
| NONLANG_START | 1 | ||
| tBOF | 2 | ||
| tEOF | 3 | ||
| tDirective | 4 | ||
| NONLANG_END | 5 | ||
| tComment | 6 | ||
| SYMBOLS_START | 7 | ||
| tComma | 8 | ||
| tBraceOpen | 9 | ||
| tBraceClose | 10 | ||
| tSqBracketOpen | 11 | ||
| tSqBracketClose | 12 | ||
| tDot | 13 | ||
| SYMBOLS_END | 14 | ||
| tIdentifier | 15 | ||
| tPlus | 16 | ||
| tMinus | 17 | ||
| tColon | 18 | ||
| LITERALS_START | 19 | ||
| NUMLITERALS_START | 20 | ||
| tIntLiteral | 21 | ||
| tLongIntLiteral | 22 | ||
| tDoubleLiteral | 23 | ||
| NUMLITERALS_END | 24 | ||
| tStringLiteral | 25 | ||
| tTrue | 26 | ||
| tFalse | 27 | ||
| tNull | 28 | ||
| LITERALS_END | 29 |
See Also