Globaltype value_desc = {mutable value_typ : Deftypes.typ_scheme;mutable value_static : bool;mutable value_caus : Defcaus.tc_scheme option;mutable value_init : Definit.ti_scheme option;mutable value_code : value_code;}and value_exp = | Vconst of Deftypes.immediate| Vconstr0 of Lident.qualident| Vconstr1 of Lident.qualident * value_code list| Vtuple of value_code list| Vrecord of (Lident.qualident * value_code) list| Vperiod of value_code Zelus.period| Vfun of Zelus.funexp * value_code Zident.Env.t| Vabstract of Lident.qualidentThe type of values
and type_components = | Abstract_type| Variant_type of constr_desc info list| Record_type of label_desc info list| Abbrev of Deftypes.typ list * Deftypes.typval value_code : value_exp -> value_codeval value_name : Lident.qualident -> value_code -> value_codeval value_desc : bool -> Deftypes.typ_scheme -> Lident.qualident -> value_descval set_type : value_desc info -> Deftypes.typ_scheme -> unitval set_causality : value_desc info -> Defcaus.tc_scheme -> unitval set_init : value_desc info -> Definit.ti_scheme -> unitval set_value_code : value_desc info -> value_code -> unit