package jsonxt

  1. Overview
  2. Docs

Source file tokens.ml

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
type token = 
  | STRING of string
  | OS
  | OE
  | NULL
  | NEGINFINITY
  | NAN
  | LEX_ERROR of string
  | LARGEINT of string
  | INT of int
  | INFINITY
  | FLOAT of float
  | EOF
  | COMPLIANCE_ERROR of string
  | COMMA
  | COLON
  | BOOL of bool
  | AS
  | AE
  | VS
  | VE
  | TS
  | TE