Legend:
Library
Module
Module type
Parameter
Class
Class type
Library
Module
Module type
Parameter
Class
Class type
type option_value =
| Module of option_module
| StringValue of string
| IntValue of int
| FloatValue of float
| List of option_value list
| SmallList of option_value list
| OnceValue of option_value
| DelayedValue of Stdlib.Buffer.t -> string -> unit
and option_module = (string * option_value) list
type load_error =
| FileDoesNotExist
| FileCannotBeRead
| ParseError of int * string
| FileHasTempBackup of FileAbstract.t
| SetOptionFailed of string * string
exception LoadError of FileAbstract.t * load_error