Liquidsoap_lang.Term_base
Terms and values in the Liquidsoap language.
include module type of struct include Runtime_term end
module Vars = Runtime_term.Vars
Sets of variables.
module Methods = Runtime_term.Methods
type custom = Runtime_term.custom
val hash_fold_custom :
Liquidsoap_lang.Term_hash.Ppx_hash_lib.Std.Hash.state ->
custom ->
Liquidsoap_lang.Term_hash.Ppx_hash_lib.Std.Hash.state
val hash_custom :
custom ->
Liquidsoap_lang.Term_hash.Ppx_hash_lib.Std.Hash.hash_value
val hash_fold_custom_handler :
Liquidsoap_lang.Term_hash.Ppx_hash_lib.Std.Hash.state ->
custom_handler ->
Liquidsoap_lang.Term_hash.Ppx_hash_lib.Std.Hash.state
val hash_custom_handler :
custom_handler ->
Liquidsoap_lang.Term_hash.Ppx_hash_lib.Std.Hash.hash_value
val hash_fold_custom_term :
Liquidsoap_lang.Term_hash.Ppx_hash_lib.Std.Hash.state ->
custom_term ->
Liquidsoap_lang.Term_hash.Ppx_hash_lib.Std.Hash.state
val hash_custom_term :
custom_term ->
Liquidsoap_lang.Term_hash.Ppx_hash_lib.Std.Hash.hash_value
type 'a term = 'a Runtime_term.term = {
t : Type.t;
term : 'a;
flags : Flags.flags;
methods : 'a term Methods.t;
}
val has_flag : 'a term -> Flags.flag -> bool
val hash_fold_func_argument :
'a 'b. (Liquidsoap_lang.Term_hash.Ppx_hash_lib.Std.Hash.state ->
'a ->
Liquidsoap_lang.Term_hash.Ppx_hash_lib.Std.Hash.state) ->
(Liquidsoap_lang.Term_hash.Ppx_hash_lib.Std.Hash.state ->
'b ->
Liquidsoap_lang.Term_hash.Ppx_hash_lib.Std.Hash.state) ->
Liquidsoap_lang.Term_hash.Ppx_hash_lib.Std.Hash.state ->
('a, 'b) func_argument ->
Liquidsoap_lang.Term_hash.Ppx_hash_lib.Std.Hash.state
type ('a, 'b) func = ('a, 'b) Runtime_term.func = {
mutable free_vars : Vars.t option;
name : string option;
arguments : ('a, 'b) func_argument list;
body : 'a;
}
val hash_fold_cast :
'a 'b. (Liquidsoap_lang.Term_hash.Ppx_hash_lib.Std.Hash.state ->
'a ->
Liquidsoap_lang.Term_hash.Ppx_hash_lib.Std.Hash.state) ->
(Liquidsoap_lang.Term_hash.Ppx_hash_lib.Std.Hash.state ->
'b ->
Liquidsoap_lang.Term_hash.Ppx_hash_lib.Std.Hash.state) ->
Liquidsoap_lang.Term_hash.Ppx_hash_lib.Std.Hash.state ->
('a, 'b) cast ->
Liquidsoap_lang.Term_hash.Ppx_hash_lib.Std.Hash.state
type ('a, 'b) common_ast = [
| `Custom of custom_term
| `Tuple of 'a list
| `Null
| `Cast of ('a, 'b) cast
| `Open of 'a * 'a
| `Var of string
| `Seq of 'a * 'a
]
val hash_fold_common_ast :
'a 'b. (Liquidsoap_lang.Term_hash.Ppx_hash_lib.Std.Hash.state ->
'a ->
Liquidsoap_lang.Term_hash.Ppx_hash_lib.Std.Hash.state) ->
(Liquidsoap_lang.Term_hash.Ppx_hash_lib.Std.Hash.state ->
'b ->
Liquidsoap_lang.Term_hash.Ppx_hash_lib.Std.Hash.state) ->
Liquidsoap_lang.Term_hash.Ppx_hash_lib.Std.Hash.state ->
('a, 'b) common_ast ->
Liquidsoap_lang.Term_hash.Ppx_hash_lib.Std.Hash.state
type 'a let_t = 'a Runtime_term.let_t = {
doc : Doc.Value.t option;
replace : bool;
pat : pattern;
mutable gen : Type.var list;
def : 'a;
body : 'a;
}
type 'a runtime_ast = [
| `Int of int
| `Cache_env of cached_env Stdlib.ref
| `Float of float
| `String of string
| `Bool of bool
| `Let of 'a let_t
| `List of 'a list
| `App of 'a * (string * 'a) list
| `Invoke of 'a invoke
| `Hide of 'a * string list
| `Encoder of
string * 'a {encoder_params}1/shadowed/(bc0201c9fbd4f9e68622a552b6f14b6d)
| `Fun of ('a, Type.t) func
]
type encoder = t Runtime_term.encoder
type encoder_params = t Runtime_term.encoder_params
exception Internal_error of Pos.t list * string
An internal error. Those should not happen in theory...
exception Parse_error of parsed_pos * string
A parsing error.
exception Unsupported_encoder of Pos.t option * string
Unsupported encoder
module Custom = Term_custom
val is_ground :
[> `Bool of 'b
| `Float of 'c
| `Int of 'd
| `List of 'a list
| `Null
| `String of 'e
| `Tuple of 'a list ]
term as 'a ->
bool
String representation of terms, (almost) assuming they are in normal form.
val to_string : t -> string
val free_term_vars :
[< `App of 'a term * ('b * 'a term) list
| `Bool of 'c
| `Cache_env of 'd
| `Cast of ('a term, 'e) cast
| `Custom of 'f
| `Encoder of
('h
* [< `Anonymous of 'i | `Encoder of 'g | `Labelled of 'j * 'a term ] list) as 'g
| `Float of 'k
| `Fun of ('a term, 'l) func
| `Hide of 'a term * string list
| `Int of 'm
| `Invoke of 'a term invoke
| `Let of 'a term let_t
| `List of 'a term list
| `Null
| `Open of 'a term * 'a term
| `Seq of 'a term * 'a term
| `String of 'n
| `Tuple of 'a term list
| `Var of Vars.elt ] as 'a
term ->
Vars.t
val free_fun_vars :
([< `App of 'b * ('d * 'b) list
| `Bool of 'e
| `Cache_env of 'f
| `Cast of ('b, 'g) cast
| `Custom of 'h
| `Encoder of
('j * [< `Anonymous of 'k | `Encoder of 'i | `Labelled of 'l * 'b ] list) as 'i
| `Float of 'm
| `Fun of 'a
| `Hide of 'c term * string list
| `Int of 'n
| `Invoke of 'b invoke
| `Let of 'b let_t
| `List of 'b list
| `Null
| `Open of 'b * 'b
| `Seq of 'b * 'b
| `String of 'o
| `Tuple of 'b list
| `Var of Vars.elt ] as 'c
term as 'b,
'p)
func as 'a ->
Vars.t
val free_vars :
?bound:string list ->
[< `App of 'a * ('c * 'a) list
| `Bool of 'd
| `Cache_env of 'e
| `Cast of ('a, 'f) cast
| `Custom of 'g
| `Encoder of
('i * [< `Anonymous of 'j | `Encoder of 'h | `Labelled of 'k * 'a ] list) as 'h
| `Float of 'l
| `Fun of ('a, 'm) func
| `Hide of 'b term * string list
| `Int of 'n
| `Invoke of 'a invoke
| `Let of 'a let_t
| `List of 'a list
| `Null
| `Open of 'a * 'a
| `Seq of 'a * 'a
| `String of 'o
| `Tuple of 'a list
| `Var of Vars.elt ] as 'b
term as 'a ->
Vars.t
val can_ignore : Type.t -> bool
Values which can be ignored (and will thus not raise a warning if ignored).
exception Unbound of Pos.Option.t * string
Trying to use an unbound variable.
exception Ignored of t
Silently discarding a meaningful value.
No_label (f,lbl,first,x)
indicates that the parameter x
could not be passed to the function f
because the latter has no label lbl
. The first
information tells whether lbl=x
is the first parameter with label lbl
in the considered application, which makes the message a bit more helpful.
exception Duplicate_label of Pos.Option.t * string
A function defines multiple arguments with the same label.
exception Missing_arguments of Pos.Option.t * (string * Type.t) list
Some mandatory arguments with given label and typed were not passed to the function during an application.
exception Unused_variable of string * Pos.t
Check that all let-bound variables are used. No check is performed for variable arguments. This cannot be done at parse-time (as for the computation of the free variables of functions) because we need types, as well as the ability to distinguish toplevel and inner let-in terms.
val check_unused :
throw:(exn -> unit) ->
lib:bool ->
[< `App of 'a * ('c * 'a) list
| `Bool of 'd
| `Cache_env of 'e
| `Cast of ('a, 'f) cast
| `Custom of 'g
| `Encoder of
('i * [< `Anonymous of 'j | `Encoder of 'h | `Labelled of 'k * 'a ] list) as 'h
| `Float of 'l
| `Fun of ('a, 'm) func
| `Hide of 'b term * string list
| `Int of 'n
| `Invoke of 'a invoke
| `Let of 'a let_t
| `List of 'a list
| `Null
| `Open of 'a * 'a
| `Seq of 'a * 'a
| `String of 'o
| `Tuple of 'a list
| `Var of Vars.elt ] as 'b
term as 'a ->
unit
module type Custom = sig ... end
module type CustomDef = sig ... end
val make :
?pos:Pos.t ->
?t:Type.t ->
?flags:Flags.flags ->
?methods:ast term Methods.t ->
ast ->
ast term
Create a new value.
val fresh :
handler:Type.Fresh.mapper ->
[< `App of 'a * ('c * 'a) list
| `Bool of 'd
| `Cache_env of 'e
| `Cast of ('a, Type_base.t) cast
| `Custom of 'f
| `Encoder of
('h * [ `Anonymous of 'i | `Encoder of 'g | `Labelled of 'j * 'a ] list) as 'g
| `Float of 'k
| `Fun of ('a, Type_base.t) func
| `Hide of 'a * 'l
| `Int of 'm
| `Invoke of 'a invoke
| `Let of 'a let_t
| `List of 'a list
| `Null
| `Open of 'a * 'a
| `Seq of 'a * 'a
| `String of 'n
| `Tuple of 'a list
| `Var of 'o App Cast Encoder Fun Hide Invoke Let List Null Open Seq Tuple Var ] as 'b
term as 'a ->
'a