package ocp-build

  1. Overview
  2. Docs
type option_value =
  1. | Module of option_module
  2. | StringValue of string
  3. | IntValue of int
  4. | FloatValue of float
  5. | List of option_value list
  6. | SmallList of option_value list
  7. | OnceValue of option_value
  8. | DelayedValue of Buffer.t -> string -> unit
and option_module = (string * option_value) list
type load_error =
  1. | FileDoesNotExist
  2. | FileCannotBeRead
  3. | ParseError of int * string
  4. | FileHasTempBackup of FileGen.t
  5. | SetOptionFailed of string * string
exception LoadError of FileGen.t * load_error