Liquidsoap_lang.Lang_core
include module type of struct include Value end
type env = (string * Value.t) list
We derive a hash of the environment to invalidate the cache when the builtin env change. We mostly keep name and methods.
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 :
Value.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 :
Value.t ->
Liquidsoap_lang.Term_hash.Ppx_hash_lib.Std.Hash.hash_value
type in_value = [
| `Int of int
| `Float of float
| `String of string
| `Bool of bool
| `Null
| `Custom of Liquidsoap_lang.Term.Custom.t
| `List of Value.t list
| `Tuple of Value.t list
| `Fun of fun_v
| `FFI of ffi
]
val methods : Value.t -> Value.t Runtime_term.Methods.t
val map_methods :
Value.t ->
(Value.t Runtime_term.Methods.t -> Value.t Runtime_term.Methods.t) ->
Value.t
val set_pos : Value.t -> Pos.Option.t -> Value.t
val has_flag : Value.t -> Flags.flag -> bool
val add_flag : Value.t -> Flags.flag -> unit
val is_unit : Value.t -> bool
val make :
?pos:Pos.Option.base ->
?methods:Value.t Runtime_term.Methods.t ->
?flags:Flags.flags ->
in_value ->
Value.t
val string_of_int_value : flags:Flags.flags -> int -> string
Perform a sequence of invokes: invokes x l1;l2;l3;...
is x.l1.l2.l3...
module type Custom = Value.Custom
module type CustomDef = Value.CustomDef
module MkCustomFromTerm = Value.MkCustomFromTerm
module MkCustom = Value.MkCustom
module RuntimeType = Value.RuntimeType
module Custom = Liquidsoap_lang.Term.Custom
module Methods = Term.Methods
type t = Type.t
type scheme = Type.scheme
type value = Value.t
Type construction
val int_t : Type.t
val unit_t : Type.t
val float_t : Type.t
val bool_t : Type.t
val string_t : Type.t
val method_t : Type.t -> (string * Type.scheme * string) list -> Type.t
val optional_method_t :
Type.t ->
(string * Type.scheme * string) list ->
Type.t
val fun_t : Type.t Type_base.argument list -> Type.t -> Type.t
val univ_t : ?constraints:Type.constr list -> unit -> Type.t
Value construction
val mk :
?pos:Pos.Option.base ->
?methods:Value.t Liquidsoap_lang.Value.Methods.t ->
?flags:Flags.flags ->
Value.in_value ->
Value.t
val unit : Value.t
val int : int -> Value.t
val octal_int : int -> Value.t
val hex_int : int -> Value.t
val bool : bool -> Value.t
val float : float -> Value.t
val string : string -> Value.t
val null : Value.t
Helpers for defining builtin functions.
val add_builtin :
category:Doc.Value.category ->
descr:string ->
?flags:Doc.Value.flag list ->
?meth:(string * Type.scheme * string * Value.t) list ->
?examples:string list ->
?base:string ->
string ->
(string * Type_base.t * Value.t option * string option) list ->
Type.t ->
(env -> Value.t) ->
string
val add_builtin_value :
category:Doc.Value.category ->
descr:string ->
?flags:Doc.Value.flag list ->
?base:string ->
string ->
Value.t ->
Type.t ->
string
val add_builtin_base :
category:Doc.Value.category ->
descr:string ->
?flags:Doc.Value.flag list ->
?base:string ->
string ->
in_value ->
Type.t ->
string
val to_unit : Value.t -> unit
val to_bool : Value.t -> bool
val to_bool_getter : Value.t -> unit -> bool
val to_string : Value.t -> string
val to_string_getter : Value.t -> unit -> string
val to_float : Value.t -> float
val to_float_getter : Value.t -> unit -> float
val to_int : Value.t -> int
val to_int_getter : Value.t -> unit -> int
val to_num : Value.t -> [> `Float of float | `Int of int ]
val to_string_list : Value.t -> string list
val to_int_list : Value.t -> int list
assoc lbl n l
returns the n
th element in l
of which the first component is lbl
.
val raise_error :
?bt:Stdlib.Printexc.raw_backtrace ->
?message:string ->
pos:Pos.t list ->
string ->
'a
val runtime_error_of_exception :
bt:Stdlib.Printexc.raw_backtrace ->
kind:string ->
exn ->
Runtime_error.runtime_error
module Position : sig ... end
module Stacktrace : sig ... end