Liquidsoap_lang.Term
include module type of Runtime_term
module Vars : sig ... end
Sets of variables.
module Methods : sig ... end
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
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 = {
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 = {
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/(4d5f7f2bb215601361fa25a234ecf2b7)
| `Fun of ('a, Type.t) func
]
exception Internal_error of Pos.t list * string
exception Unsupported_encoder of Pos.t option * string
module Custom = Liquidsoap_lang.Term_base.Custom
and encoder = string * encoder_params
val unit : ast
val is_ground : t -> bool
val string_of_pat : pattern -> string
val to_string : t -> string
val can_ignore : Type.t -> bool
val fresh : handler:Type.Fresh.mapper -> t -> t
exception Unbound of Pos.Option.t * string
exception Ignored of t
exception Duplicate_label of Pos.Option.t * string
exception Missing_arguments of Pos.Option.t * (string * Type.t) list
exception Unused_variable of string * Pos.t
val check_unused : throw:(exn -> unit) -> lib:bool -> t -> unit
module type Custom = sig ... end
module type CustomDef = sig ... end