Liquidsoap_lang.Lang
Values and types of the liquidsoap language.
type t = Type.t
The type of a value.
type scheme = Type.scheme
type regexp = Builtins_regexp.regexp
module Custom = Liquidsoap_lang.Value.Custom
module Methods = Term.Methods
type in_value = Value.in_value
type env = Value.env
type value = Value.t
Multiapply a value to arguments. The argument t
is the type of the result of the application.
val add_builtin :
category:Doc.Value.category ->
descr:string ->
?flags:Doc.Value.flag list ->
?meth:(string * Type.scheme * string * value) list ->
?examples:string list ->
?base:module_name ->
string ->
proto ->
t ->
(env -> value) ->
module_name
Add a builtin to the language, high-level version for functions.
val add_builtin_value :
category:Doc.Value.category ->
descr:string ->
?flags:Doc.Value.flag list ->
?base:module_name ->
string ->
value ->
t ->
module_name
Add a builtin value to the language
val add_builtin_base :
category:Doc.Value.category ->
descr:string ->
?flags:Doc.Value.flag list ->
?base:module_name ->
string ->
Value.in_value ->
t ->
module_name
Add a builtin to the language, more rudimentary version.
val add_module : ?base:module_name -> string -> module_name
Declare a new module.
val module_name : module_name -> string
val to_unit : value -> unit
val to_bool : value -> bool
val to_bool_getter : value -> unit -> bool
val to_string : value -> string
val to_string_getter : value -> unit -> string
val to_float : value -> float
val to_float_getter : value -> unit -> float
val to_error : value -> Runtime_error.runtime_error
val to_int : value -> int
val to_int_getter : value -> unit -> int
val to_num : value -> [ `Int of int | `Float of float ]
val to_string_list : value -> string list
val to_int_list : value -> int list
assoc x n l
returns the n
-th y
such that (x,y)
is in the list l
. This is useful for retrieving arguments of a function.
val int_t : t
val unit_t : t
val float_t : t
val bool_t : t
val string_t : t
val regexp_t : t
val error_t : t
fun_t args r
is the type of a function taking args
as parameters and returning values of type r
. The elements of r
are of the form (b,l,t)
where b
indicates if the argument is optional, l
is the label of the argument (""
means no label) and t
is the type of the argument.
val univ_t : ?constraints:Type.constr list -> unit -> t
val unit : value
val int : int -> value
val octal_int : int -> value
val hex_int : int -> value
val bool : bool -> value
val float : float -> value
val string : string -> value
val null : value
val error : Runtime_error.runtime_error -> value
Build a function from an OCaml function. Items in the prototype indicate the label and optional values. Second string value is used when renaming argument name, e.g. `fun (foo=_, ...) -> `
Build a function from a term.
Build a constant function. It is slightly less opaque and allows the printing of the closure when the constant is ground.
val raise_error :
?bt:Stdlib.Printexc.raw_backtrace ->
?message:string ->
pos:Pos.List.t ->
string ->
'a
Raise an error.
val runtime_error_of_exception :
bt:Stdlib.Printexc.raw_backtrace ->
kind:string ->
exn ->
Runtime_error.runtime_error
Convert an exception into a runtime error.
Re-raise an error as a runtime error.
val descr_of_regexp : regexp -> string
Return an unescaped string description of a regexp, i.e. ^foo/bla$
val string_of_regexp : regexp -> string
Return a string description of a regexp value i.e. r/^foo\/bla$/g
val type_term :
?name:string ->
?cache:bool ->
?trim:bool ->
?deprecated:bool ->
?ty:t ->
stdlib:stdlib ->
parsed_term:Parsed_term.t ->
Term.t ->
Term.t
Type a term, possibly returning the cached term instead.