Module Ast_403.Ast_helper.Exp

module Exp: sig .. end

val mk : ?loc:Location.t ->
?attrs:Ast_403.Parsetree.attributes ->
Ast_403.Parsetree.expression_desc -> Ast_403.Parsetree.expression
val attr : Ast_403.Parsetree.expression ->
Ast_403.Parsetree.attribute -> Ast_403.Parsetree.expression
val ident : ?loc:Location.t ->
?attrs:Ast_403.Parsetree.attributes ->
Longident.t Ast_403.Asttypes.loc -> Ast_403.Parsetree.expression
val constant : ?loc:Location.t ->
?attrs:Ast_403.Parsetree.attributes ->
Ast_403.Parsetree.constant -> Ast_403.Parsetree.expression
val let_ : ?loc:Location.t ->
?attrs:Ast_403.Parsetree.attributes ->
Ast_403.Asttypes.rec_flag ->
Ast_403.Parsetree.value_binding list ->
Ast_403.Parsetree.expression -> Ast_403.Parsetree.expression
val fun_ : ?loc:Location.t ->
?attrs:Ast_403.Parsetree.attributes ->
Ast_403.Asttypes.arg_label ->
Ast_403.Parsetree.expression option ->
Ast_403.Parsetree.pattern ->
Ast_403.Parsetree.expression -> Ast_403.Parsetree.expression
val function_ : ?loc:Location.t ->
?attrs:Ast_403.Parsetree.attributes ->
Ast_403.Parsetree.case list -> Ast_403.Parsetree.expression
val apply : ?loc:Location.t ->
?attrs:Ast_403.Parsetree.attributes ->
Ast_403.Parsetree.expression ->
(Ast_403.Asttypes.arg_label * Ast_403.Parsetree.expression) list ->
Ast_403.Parsetree.expression
val match_ : ?loc:Location.t ->
?attrs:Ast_403.Parsetree.attributes ->
Ast_403.Parsetree.expression ->
Ast_403.Parsetree.case list -> Ast_403.Parsetree.expression
val try_ : ?loc:Location.t ->
?attrs:Ast_403.Parsetree.attributes ->
Ast_403.Parsetree.expression ->
Ast_403.Parsetree.case list -> Ast_403.Parsetree.expression
val tuple : ?loc:Location.t ->
?attrs:Ast_403.Parsetree.attributes ->
Ast_403.Parsetree.expression list -> Ast_403.Parsetree.expression
val construct : ?loc:Location.t ->
?attrs:Ast_403.Parsetree.attributes ->
Longident.t Ast_403.Asttypes.loc ->
Ast_403.Parsetree.expression option -> Ast_403.Parsetree.expression
val variant : ?loc:Location.t ->
?attrs:Ast_403.Parsetree.attributes ->
Ast_403.Asttypes.label ->
Ast_403.Parsetree.expression option -> Ast_403.Parsetree.expression
val record : ?loc:Location.t ->
?attrs:Ast_403.Parsetree.attributes ->
(Longident.t Ast_403.Asttypes.loc * Ast_403.Parsetree.expression) list ->
Ast_403.Parsetree.expression option -> Ast_403.Parsetree.expression
val field : ?loc:Location.t ->
?attrs:Ast_403.Parsetree.attributes ->
Ast_403.Parsetree.expression ->
Longident.t Ast_403.Asttypes.loc -> Ast_403.Parsetree.expression
val setfield : ?loc:Location.t ->
?attrs:Ast_403.Parsetree.attributes ->
Ast_403.Parsetree.expression ->
Longident.t Ast_403.Asttypes.loc ->
Ast_403.Parsetree.expression -> Ast_403.Parsetree.expression
val array : ?loc:Location.t ->
?attrs:Ast_403.Parsetree.attributes ->
Ast_403.Parsetree.expression list -> Ast_403.Parsetree.expression
val ifthenelse : ?loc:Location.t ->
?attrs:Ast_403.Parsetree.attributes ->
Ast_403.Parsetree.expression ->
Ast_403.Parsetree.expression ->
Ast_403.Parsetree.expression option -> Ast_403.Parsetree.expression
val sequence : ?loc:Location.t ->
?attrs:Ast_403.Parsetree.attributes ->
Ast_403.Parsetree.expression ->
Ast_403.Parsetree.expression -> Ast_403.Parsetree.expression
val while_ : ?loc:Location.t ->
?attrs:Ast_403.Parsetree.attributes ->
Ast_403.Parsetree.expression ->
Ast_403.Parsetree.expression -> Ast_403.Parsetree.expression
val for_ : ?loc:Location.t ->
?attrs:Ast_403.Parsetree.attributes ->
Ast_403.Parsetree.pattern ->
Ast_403.Parsetree.expression ->
Ast_403.Parsetree.expression ->
Ast_403.Asttypes.direction_flag ->
Ast_403.Parsetree.expression -> Ast_403.Parsetree.expression
val constraint_ : ?loc:Location.t ->
?attrs:Ast_403.Parsetree.attributes ->
Ast_403.Parsetree.expression ->
Ast_403.Parsetree.core_type -> Ast_403.Parsetree.expression
val coerce : ?loc:Location.t ->
?attrs:Ast_403.Parsetree.attributes ->
Ast_403.Parsetree.expression ->
Ast_403.Parsetree.core_type option ->
Ast_403.Parsetree.core_type -> Ast_403.Parsetree.expression
val send : ?loc:Location.t ->
?attrs:Ast_403.Parsetree.attributes ->
Ast_403.Parsetree.expression -> string -> Ast_403.Parsetree.expression
val new_ : ?loc:Location.t ->
?attrs:Ast_403.Parsetree.attributes ->
Longident.t Ast_403.Asttypes.loc -> Ast_403.Parsetree.expression
val setinstvar : ?loc:Location.t ->
?attrs:Ast_403.Parsetree.attributes ->
string Ast_403.Asttypes.loc ->
Ast_403.Parsetree.expression -> Ast_403.Parsetree.expression
val override : ?loc:Location.t ->
?attrs:Ast_403.Parsetree.attributes ->
(string Ast_403.Asttypes.loc * Ast_403.Parsetree.expression) list ->
Ast_403.Parsetree.expression
val letmodule : ?loc:Location.t ->
?attrs:Ast_403.Parsetree.attributes ->
string Ast_403.Asttypes.loc ->
Ast_403.Parsetree.module_expr ->
Ast_403.Parsetree.expression -> Ast_403.Parsetree.expression
val assert_ : ?loc:Location.t ->
?attrs:Ast_403.Parsetree.attributes ->
Ast_403.Parsetree.expression -> Ast_403.Parsetree.expression
val lazy_ : ?loc:Location.t ->
?attrs:Ast_403.Parsetree.attributes ->
Ast_403.Parsetree.expression -> Ast_403.Parsetree.expression
val poly : ?loc:Location.t ->
?attrs:Ast_403.Parsetree.attributes ->
Ast_403.Parsetree.expression ->
Ast_403.Parsetree.core_type option -> Ast_403.Parsetree.expression
val object_ : ?loc:Location.t ->
?attrs:Ast_403.Parsetree.attributes ->
Ast_403.Parsetree.class_structure -> Ast_403.Parsetree.expression
val newtype : ?loc:Location.t ->
?attrs:Ast_403.Parsetree.attributes ->
string -> Ast_403.Parsetree.expression -> Ast_403.Parsetree.expression
val pack : ?loc:Location.t ->
?attrs:Ast_403.Parsetree.attributes ->
Ast_403.Parsetree.module_expr -> Ast_403.Parsetree.expression
val open_ : ?loc:Location.t ->
?attrs:Ast_403.Parsetree.attributes ->
Ast_403.Asttypes.override_flag ->
Longident.t Ast_403.Asttypes.loc ->
Ast_403.Parsetree.expression -> Ast_403.Parsetree.expression
val extension : ?loc:Location.t ->
?attrs:Ast_403.Parsetree.attributes ->
Ast_403.Parsetree.extension -> Ast_403.Parsetree.expression
val unreachable : ?loc:Location.t ->
?attrs:Ast_403.Parsetree.attributes -> unit -> Ast_403.Parsetree.expression
val case : Ast_403.Parsetree.pattern ->
?guard:Ast_403.Parsetree.expression ->
Ast_403.Parsetree.expression -> Ast_403.Parsetree.case