Source file jsonaf.ml

1
2
3
4
5
6
7
8
9
10
11
12
13
open! Base
open! Import

type t =
  [ `Null
  | `False
  | `True
  | `String of string
  | `Number of string
  | `Object of (string * t) list
  | `Array of t list
  ]
[@@deriving sexp_of]