JSONTokenKind

Identifies the kind of a JSON token.

Values

ValueMeaning
none

Used internally, never returned from the lexer

error

Malformed token

null_

The "null" token

boolean

"true" or "false" token

number

Numeric token

string

String token, stored in escaped form

objectStart

The "{" token

objectEnd

The "}" token

arrayStart

The "[" token

arrayEnd

The "]" token

colon

The ":" token

comma

The "," token

Meta