Module Concrete.ExceptionHandler
type t
= private
{
location : Location.t;
type_ : Expression.t option;
name : Identifier.t option;
body : Statement.t list;
}
include Ppx_sexp_conv_lib.Sexpable.S with type ExceptionHandler.t := t
val compare : t -> t -> int
val hash_fold_t : Ppx_hash_lib.Std.Hash.state -> t -> Ppx_hash_lib.Std.Hash.state
val hash : t -> Ppx_hash_lib.Std.Hash.hash_value
val make_t : location:Location.t -> ?type_:Expression.t -> ?name:Identifier.t -> ?body:Statement.t list -> unit -> t