package liquidsoap-lang

  1. Overview
  2. Docs
type parse_error = {
  1. pos : Pos.t;
  2. message : string;
}
exception Parse_error of parse_error
type t = [
  1. | `Assoc of (string * t) list
  2. | `Tuple of t list
  3. | `String of string
  4. | `Bool of bool
  5. | `Float of float
  6. | `Int of int
  7. | `Null
]
OCaml

Innovation. Community. Security.