Liquidsoap_lang.Value
Values are untyped normal forms of terms.
module Custom = Liquidsoap_lang.Term.Custom
module Methods = Runtime_term.Methods
type env = (string * t) list
We derive a hash of the environment to invalidate the cache when the builtin env change. We mostly keep name and methods.
and t =
| Int of {
pos : Pos.Option.t;
value : int;
methods : t Methods.t;
mutable flags : Flags.flags;
}
| Float of {
pos : Pos.Option.t;
value : float;
methods : t Methods.t;
}
| String of {
pos : Pos.Option.t;
value : string;
methods : t Methods.t;
}
| Bool of {
pos : Pos.Option.t;
value : bool;
methods : t Methods.t;
}
| Null of {
pos : Pos.Option.t;
methods : t Methods.t;
}
| Custom of {
pos : Pos.Option.t;
value : Custom.t;
methods : t Methods.t;
dynamic_methods : dynamic_methods option;
mutable flags : Flags.flags;
}
| List of {
pos : Pos.Option.t;
value : t list;
methods : t Methods.t;
mutable flags : Flags.flags;
}
| Tuple of {
pos : Pos.Option.t;
value : t list;
methods : t Methods.t;
mutable flags : Flags.flags;
}
| Fun of {
pos : Pos.Option.t;
fun_args : (string * string * t option) list;
fun_env : env;
fun_body : Term.t;
methods : t Methods.t;
mutable flags : Flags.flags;
}
| FFI of {
pos : Pos.Option.t;
ffi_args : (string * string * t option) list;
mutable ffi_fn : env -> t;
methods : t Methods.t;
mutable flags : Flags.flags;
}
val hash_fold_env :
Liquidsoap_lang.Term_hash.Ppx_hash_lib.Std.Hash.state ->
env ->
Liquidsoap_lang.Term_hash.Ppx_hash_lib.Std.Hash.state
val hash_fold_dynamic_methods :
dynamic_methods Liquidsoap_lang.Term_hash.Ppx_hash_lib.Std.Hash.folder
val hash_fold_t : t Liquidsoap_lang.Term_hash.Ppx_hash_lib.Std.Hash.folder
val hash_env :
env ->
Liquidsoap_lang.Term_hash.Ppx_hash_lib.Std.Hash.hash_value
val hash_dynamic_methods :
dynamic_methods ->
Liquidsoap_lang.Term_hash.Ppx_hash_lib.Std.Hash.hash_value
val hash : t -> Liquidsoap_lang.Term_hash.Ppx_hash_lib.Std.Hash.hash_value
val pos : t -> Pos.Option.t
val set_pos : t -> Pos.Option.t -> t
val has_flag : t -> Flags.flag -> bool
val add_flag : t -> Flags.flag -> unit
val is_unit : t -> bool
val make :
?pos:Pos.Option.base ->
?methods:t Methods.t ->
?flags:Flags.flags ->
in_value ->
t
val string_of_int_value : flags:Flags.flags -> int -> string
val to_string : t -> string
Perform a sequence of invokes: invokes x l1;l2;l3;...
is x.l1.l2.l3...
module type Custom = sig ... end
module type CustomDef = Term.CustomDef
module MkCustomFromTerm (Term : Term.Custom) : sig ... end
module RuntimeType : sig ... end