1995-08-09 08:06:35 -07:00
|
|
|
(***********************************************************************)
|
|
|
|
(* *)
|
2011-07-27 07:17:02 -07:00
|
|
|
(* OCaml *)
|
1995-08-09 08:06:35 -07:00
|
|
|
(* *)
|
|
|
|
(* Xavier Leroy, projet Cristal, INRIA Rocquencourt *)
|
|
|
|
(* *)
|
1996-04-30 07:53:58 -07:00
|
|
|
(* Copyright 1996 Institut National de Recherche en Informatique et *)
|
1999-11-17 10:59:06 -08:00
|
|
|
(* en Automatique. All rights reserved. This file is distributed *)
|
|
|
|
(* under the terms of the Q Public License version 1.0. *)
|
1995-08-09 08:06:35 -07:00
|
|
|
(* *)
|
|
|
|
(***********************************************************************)
|
|
|
|
|
1995-05-04 03:15:53 -07:00
|
|
|
(* Abstract syntax tree after typing *)
|
|
|
|
|
|
|
|
open Asttypes
|
1996-09-23 04:33:27 -07:00
|
|
|
open Types
|
1996-04-22 04:15:41 -07:00
|
|
|
|
1995-05-04 03:15:53 -07:00
|
|
|
(* Value expressions for the core language *)
|
|
|
|
|
2012-05-30 07:52:37 -07:00
|
|
|
type partial = Partial | Total
|
|
|
|
type optional = Required | Optional
|
|
|
|
|
1995-05-04 03:15:53 -07:00
|
|
|
type pattern =
|
|
|
|
{ pat_desc: pattern_desc;
|
|
|
|
pat_loc: Location.t;
|
2012-05-30 07:52:37 -07:00
|
|
|
pat_extra : (pat_extra * Location.t) list;
|
1998-04-06 02:23:01 -07:00
|
|
|
pat_type: type_expr;
|
2010-11-07 23:34:09 -08:00
|
|
|
mutable pat_env: Env.t }
|
1995-05-04 03:15:53 -07:00
|
|
|
|
2012-05-30 07:52:37 -07:00
|
|
|
and pat_extra =
|
|
|
|
| Tpat_constraint of core_type
|
|
|
|
| Tpat_type of Path.t * Longident.t loc
|
|
|
|
| Tpat_unpack
|
|
|
|
|
1995-05-04 03:15:53 -07:00
|
|
|
and pattern_desc =
|
|
|
|
Tpat_any
|
2012-05-30 07:52:37 -07:00
|
|
|
| Tpat_var of Ident.t * string loc
|
|
|
|
| Tpat_alias of pattern * Ident.t * string loc
|
1995-05-04 03:15:53 -07:00
|
|
|
| Tpat_constant of constant
|
|
|
|
| Tpat_tuple of pattern list
|
2012-05-31 01:07:31 -07:00
|
|
|
| Tpat_construct of
|
|
|
|
Path.t * Longident.t loc * constructor_description * pattern list * bool
|
2008-01-11 08:13:18 -08:00
|
|
|
| Tpat_variant of label * pattern option * row_desc ref
|
2012-05-31 01:07:31 -07:00
|
|
|
| Tpat_record of
|
|
|
|
(Path.t * Longident.t loc * label_description * pattern) list *
|
|
|
|
closed_flag
|
1998-04-06 02:23:01 -07:00
|
|
|
| Tpat_array of pattern list
|
2008-01-11 08:13:18 -08:00
|
|
|
| Tpat_or of pattern * pattern * row_desc option
|
2008-07-09 06:03:38 -07:00
|
|
|
| Tpat_lazy of pattern
|
1995-05-04 03:15:53 -07:00
|
|
|
|
2012-05-30 07:52:37 -07:00
|
|
|
and expression =
|
1995-05-04 03:15:53 -07:00
|
|
|
{ exp_desc: expression_desc;
|
|
|
|
exp_loc: Location.t;
|
2012-05-30 07:52:37 -07:00
|
|
|
exp_extra : (exp_extra * Location.t) list;
|
1996-09-23 04:33:27 -07:00
|
|
|
exp_type: type_expr;
|
|
|
|
exp_env: Env.t }
|
1995-05-04 03:15:53 -07:00
|
|
|
|
2012-05-30 07:52:37 -07:00
|
|
|
and exp_extra =
|
2012-05-31 01:07:31 -07:00
|
|
|
| Texp_constraint of core_type option * core_type option
|
2012-05-30 07:52:37 -07:00
|
|
|
| Texp_open of Path.t * Longident.t loc * Env.t
|
2012-07-10 01:25:58 -07:00
|
|
|
| Texp_poly of core_type option
|
|
|
|
| Texp_newtype of string
|
2012-05-30 07:52:37 -07:00
|
|
|
|
1995-05-04 03:15:53 -07:00
|
|
|
and expression_desc =
|
2012-05-30 07:52:37 -07:00
|
|
|
Texp_ident of Path.t * Longident.t loc * Types.value_description
|
1995-05-04 03:15:53 -07:00
|
|
|
| Texp_constant of constant
|
|
|
|
| Texp_let of rec_flag * (pattern * expression) list * expression
|
2012-05-30 07:52:37 -07:00
|
|
|
| Texp_function of label * (pattern * expression) list * partial
|
|
|
|
| Texp_apply of expression * (label * expression option * optional) list
|
1999-11-30 08:07:38 -08:00
|
|
|
| Texp_match of expression * (pattern * expression) list * partial
|
1995-05-04 03:15:53 -07:00
|
|
|
| Texp_try of expression * (pattern * expression) list
|
|
|
|
| Texp_tuple of expression list
|
2012-05-31 01:07:31 -07:00
|
|
|
| Texp_construct of
|
|
|
|
Path.t * Longident.t loc * constructor_description * expression list *
|
|
|
|
bool
|
1999-11-30 08:07:38 -08:00
|
|
|
| Texp_variant of label * expression option
|
2012-05-31 01:07:31 -07:00
|
|
|
| Texp_record of
|
|
|
|
(Path.t * Longident.t loc * label_description * expression) list *
|
|
|
|
expression option
|
2012-05-30 07:52:37 -07:00
|
|
|
| Texp_field of expression * Path.t * Longident.t loc * label_description
|
2012-05-31 01:07:31 -07:00
|
|
|
| Texp_setfield of
|
|
|
|
expression * Path.t * Longident.t loc * label_description * expression
|
1995-05-04 03:15:53 -07:00
|
|
|
| Texp_array of expression list
|
|
|
|
| Texp_ifthenelse of expression * expression * expression option
|
|
|
|
| Texp_sequence of expression * expression
|
|
|
|
| Texp_while of expression * expression
|
|
|
|
| Texp_for of
|
2012-05-31 01:07:31 -07:00
|
|
|
Ident.t * string loc * expression * expression * direction_flag *
|
|
|
|
expression
|
1995-05-04 03:15:53 -07:00
|
|
|
| Texp_when of expression * expression
|
2012-05-30 07:52:37 -07:00
|
|
|
| Texp_send of expression * meth * expression option
|
|
|
|
| Texp_new of Path.t * Longident.t loc * Types.class_declaration
|
|
|
|
| Texp_instvar of Path.t * Path.t * string loc
|
|
|
|
| Texp_setinstvar of Path.t * Path.t * string loc * expression
|
|
|
|
| Texp_override of Path.t * (Path.t * string loc * expression) list
|
|
|
|
| Texp_letmodule of Ident.t * string loc * module_expr * expression
|
2000-12-04 07:37:05 -08:00
|
|
|
| Texp_assert of expression
|
|
|
|
| Texp_assertfalse
|
2002-01-20 09:39:10 -08:00
|
|
|
| Texp_lazy of expression
|
2012-05-30 07:52:37 -07:00
|
|
|
| Texp_object of class_structure * string list
|
2009-10-26 03:53:16 -07:00
|
|
|
| Texp_pack of module_expr
|
1995-05-04 03:15:53 -07:00
|
|
|
|
1997-05-11 14:48:21 -07:00
|
|
|
and meth =
|
|
|
|
Tmeth_name of string
|
|
|
|
| Tmeth_val of Ident.t
|
|
|
|
|
1998-06-24 12:22:26 -07:00
|
|
|
(* Value expressions for the class language *)
|
|
|
|
|
|
|
|
and class_expr =
|
|
|
|
{ cl_desc: class_expr_desc;
|
|
|
|
cl_loc: Location.t;
|
2012-05-30 07:52:37 -07:00
|
|
|
cl_type: Types.class_type;
|
2003-11-25 01:20:45 -08:00
|
|
|
cl_env: Env.t }
|
1998-06-24 12:22:26 -07:00
|
|
|
|
|
|
|
and class_expr_desc =
|
2012-05-30 07:52:37 -07:00
|
|
|
Tcl_ident of Path.t * Longident.t loc * core_type list
|
|
|
|
| Tcl_structure of class_structure
|
2012-05-31 01:07:31 -07:00
|
|
|
| Tcl_fun of
|
|
|
|
label * pattern * (Ident.t * string loc * expression) list * class_expr *
|
|
|
|
partial
|
2012-05-30 07:52:37 -07:00
|
|
|
| Tcl_apply of class_expr * (label * expression option * optional) list
|
|
|
|
| Tcl_let of rec_flag * (pattern * expression) list *
|
|
|
|
(Ident.t * string loc * expression) list * class_expr
|
2012-05-31 01:07:31 -07:00
|
|
|
| Tcl_constraint of
|
|
|
|
class_expr * class_type option * string list * string list * Concr.t
|
1998-06-24 12:22:26 -07:00
|
|
|
(* Visible instance variables, methods and concretes methods *)
|
|
|
|
|
|
|
|
and class_structure =
|
2012-05-31 01:07:31 -07:00
|
|
|
{ cstr_pat : pattern;
|
2012-05-30 07:52:37 -07:00
|
|
|
cstr_fields: class_field list;
|
|
|
|
cstr_type : Types.class_signature;
|
|
|
|
cstr_meths: Ident.t Meths.t }
|
1996-04-22 04:15:41 -07:00
|
|
|
|
1998-02-26 04:54:44 -08:00
|
|
|
and class_field =
|
2012-05-30 07:52:37 -07:00
|
|
|
{
|
|
|
|
cf_desc : class_field_desc;
|
|
|
|
cf_loc : Location.t;
|
|
|
|
}
|
|
|
|
|
|
|
|
and class_field_kind =
|
|
|
|
Tcfk_virtual of core_type
|
|
|
|
| Tcfk_concrete of expression
|
|
|
|
|
|
|
|
and class_field_desc =
|
2012-05-31 01:07:31 -07:00
|
|
|
Tcf_inher of
|
|
|
|
override_flag * class_expr * string option * (string * Ident.t) list *
|
|
|
|
(string * Ident.t) list
|
1998-06-24 12:22:26 -07:00
|
|
|
(* Inherited instance variables and concrete methods *)
|
2012-05-31 01:07:31 -07:00
|
|
|
| Tcf_val of
|
|
|
|
string * string loc * mutable_flag * Ident.t * class_field_kind * bool
|
2006-04-04 19:28:13 -07:00
|
|
|
(* None = virtual, true = override *)
|
2012-05-30 07:52:37 -07:00
|
|
|
| Tcf_meth of string * string loc * private_flag * class_field_kind * bool
|
|
|
|
| Tcf_constr of core_type * core_type
|
|
|
|
(* | Tcf_let of rec_flag * (pattern * expression) list *
|
|
|
|
(Ident.t * string loc * expression) list *)
|
|
|
|
| Tcf_init of expression
|
1996-04-22 04:15:41 -07:00
|
|
|
|
1995-05-04 03:15:53 -07:00
|
|
|
(* Value expressions for the module language *)
|
|
|
|
|
1998-02-26 04:54:44 -08:00
|
|
|
and module_expr =
|
1995-05-04 03:15:53 -07:00
|
|
|
{ mod_desc: module_expr_desc;
|
|
|
|
mod_loc: Location.t;
|
2012-05-30 07:52:37 -07:00
|
|
|
mod_type: Types.module_type;
|
1996-09-23 04:33:27 -07:00
|
|
|
mod_env: Env.t }
|
1995-05-04 03:15:53 -07:00
|
|
|
|
2012-05-30 07:52:37 -07:00
|
|
|
and module_type_constraint =
|
|
|
|
Tmodtype_implicit
|
|
|
|
| Tmodtype_explicit of module_type
|
|
|
|
|
1995-05-04 03:15:53 -07:00
|
|
|
and module_expr_desc =
|
2012-05-30 07:52:37 -07:00
|
|
|
Tmod_ident of Path.t * Longident.t loc
|
1995-05-04 03:15:53 -07:00
|
|
|
| Tmod_structure of structure
|
2012-05-30 07:52:37 -07:00
|
|
|
| Tmod_functor of Ident.t * string loc * module_type * module_expr
|
1995-05-04 03:15:53 -07:00
|
|
|
| Tmod_apply of module_expr * module_expr * module_coercion
|
2012-05-31 01:07:31 -07:00
|
|
|
| Tmod_constraint of
|
|
|
|
module_expr * Types.module_type * module_type_constraint * module_coercion
|
2012-05-30 07:52:37 -07:00
|
|
|
| Tmod_unpack of expression * Types.module_type
|
1995-05-04 03:15:53 -07:00
|
|
|
|
2012-05-30 07:52:37 -07:00
|
|
|
and structure = {
|
|
|
|
str_items : structure_item list;
|
|
|
|
str_type : Types.signature;
|
|
|
|
str_final_env : Env.t;
|
|
|
|
}
|
1995-05-04 03:15:53 -07:00
|
|
|
|
|
|
|
and structure_item =
|
2012-05-30 07:52:37 -07:00
|
|
|
{ str_desc : structure_item_desc;
|
|
|
|
str_loc : Location.t;
|
|
|
|
str_env : Env.t
|
|
|
|
}
|
|
|
|
|
|
|
|
and structure_item_desc =
|
1995-05-04 03:15:53 -07:00
|
|
|
Tstr_eval of expression
|
|
|
|
| Tstr_value of rec_flag * (pattern * expression) list
|
2012-05-30 07:52:37 -07:00
|
|
|
| Tstr_primitive of Ident.t * string loc * value_description
|
|
|
|
| Tstr_type of (Ident.t * string loc * type_declaration) list
|
|
|
|
| Tstr_exception of Ident.t * string loc * exception_declaration
|
|
|
|
| Tstr_exn_rebind of Ident.t * string loc * Path.t * Longident.t loc
|
|
|
|
| Tstr_module of Ident.t * string loc * module_expr
|
|
|
|
| Tstr_recmodule of (Ident.t * string loc * module_type * module_expr) list
|
|
|
|
| Tstr_modtype of Ident.t * string loc * module_type
|
|
|
|
| Tstr_open of Path.t * Longident.t loc
|
|
|
|
| Tstr_class of (class_declaration * string list * virtual_flag) list
|
|
|
|
| Tstr_class_type of (Ident.t * string loc * class_type_declaration) list
|
2000-12-01 01:35:00 -08:00
|
|
|
| Tstr_include of module_expr * Ident.t list
|
1995-05-04 03:15:53 -07:00
|
|
|
|
|
|
|
and module_coercion =
|
|
|
|
Tcoerce_none
|
|
|
|
| Tcoerce_structure of (int * module_coercion) list
|
|
|
|
| Tcoerce_functor of module_coercion * module_coercion
|
1995-10-23 09:59:41 -07:00
|
|
|
| Tcoerce_primitive of Primitive.description
|
1995-05-04 03:15:53 -07:00
|
|
|
|
2012-05-30 07:52:37 -07:00
|
|
|
and module_type =
|
|
|
|
{ mty_desc: module_type_desc;
|
|
|
|
mty_type : Types.module_type;
|
|
|
|
mty_env : Env.t;
|
|
|
|
mty_loc: Location.t }
|
|
|
|
|
|
|
|
and module_type_desc =
|
|
|
|
Tmty_ident of Path.t * Longident.t loc
|
|
|
|
| Tmty_signature of signature
|
|
|
|
| Tmty_functor of Ident.t * string loc * module_type * module_type
|
|
|
|
| Tmty_with of module_type * (Path.t * Longident.t loc * with_constraint) list
|
|
|
|
| Tmty_typeof of module_expr
|
|
|
|
|
|
|
|
and signature = {
|
|
|
|
sig_items : signature_item list;
|
|
|
|
sig_type : Types.signature;
|
|
|
|
sig_final_env : Env.t;
|
|
|
|
}
|
|
|
|
|
|
|
|
and signature_item =
|
|
|
|
{ sig_desc: signature_item_desc;
|
|
|
|
sig_env : Env.t; (* BINANNOT ADDED *)
|
|
|
|
sig_loc: Location.t }
|
|
|
|
|
|
|
|
and signature_item_desc =
|
|
|
|
Tsig_value of Ident.t * string loc * value_description
|
|
|
|
| Tsig_type of (Ident.t * string loc * type_declaration) list
|
|
|
|
| Tsig_exception of Ident.t * string loc * exception_declaration
|
|
|
|
| Tsig_module of Ident.t * string loc * module_type
|
|
|
|
| Tsig_recmodule of (Ident.t * string loc * module_type) list
|
|
|
|
| Tsig_modtype of Ident.t * string loc * modtype_declaration
|
|
|
|
| Tsig_open of Path.t * Longident.t loc
|
|
|
|
| Tsig_include of module_type * Types.signature
|
|
|
|
| Tsig_class of class_description list
|
|
|
|
| Tsig_class_type of class_type_declaration list
|
|
|
|
|
|
|
|
and modtype_declaration =
|
|
|
|
Tmodtype_abstract
|
|
|
|
| Tmodtype_manifest of module_type
|
|
|
|
|
|
|
|
and with_constraint =
|
|
|
|
Twith_type of type_declaration
|
|
|
|
| Twith_module of Path.t * Longident.t loc
|
|
|
|
| Twith_typesubst of type_declaration
|
|
|
|
| Twith_modsubst of Path.t * Longident.t loc
|
|
|
|
|
|
|
|
and core_type =
|
|
|
|
(* mutable because of [Typeclass.declare_method] *)
|
|
|
|
{ mutable ctyp_desc : core_type_desc;
|
|
|
|
mutable ctyp_type : type_expr;
|
|
|
|
ctyp_env : Env.t; (* BINANNOT ADDED *)
|
|
|
|
ctyp_loc : Location.t }
|
|
|
|
|
|
|
|
and core_type_desc =
|
|
|
|
Ttyp_any
|
|
|
|
| Ttyp_var of string
|
|
|
|
| Ttyp_arrow of label * core_type * core_type
|
|
|
|
| Ttyp_tuple of core_type list
|
|
|
|
| Ttyp_constr of Path.t * Longident.t loc * core_type list
|
|
|
|
| Ttyp_object of core_field_type list
|
|
|
|
| Ttyp_class of Path.t * Longident.t loc * core_type list * label list
|
|
|
|
| Ttyp_alias of core_type * string
|
|
|
|
| Ttyp_variant of row_field list * bool * label list option
|
|
|
|
| Ttyp_poly of string list * core_type
|
|
|
|
| Ttyp_package of package_type
|
|
|
|
|
|
|
|
and package_type = {
|
|
|
|
pack_name : Path.t;
|
|
|
|
pack_fields : (Longident.t loc * core_type) list;
|
|
|
|
pack_type : Types.module_type;
|
|
|
|
pack_txt : Longident.t loc;
|
|
|
|
}
|
|
|
|
|
|
|
|
and core_field_type =
|
|
|
|
{ field_desc: core_field_desc;
|
|
|
|
field_loc: Location.t }
|
|
|
|
|
|
|
|
and core_field_desc =
|
|
|
|
Tcfield of string * core_type
|
|
|
|
| Tcfield_var
|
|
|
|
|
|
|
|
and row_field =
|
|
|
|
Ttag of label * bool * core_type list
|
|
|
|
| Tinherit of core_type
|
|
|
|
|
|
|
|
and value_description =
|
|
|
|
{ val_desc : core_type;
|
|
|
|
val_val : Types.value_description;
|
|
|
|
val_prim : string list;
|
|
|
|
val_loc : Location.t;
|
|
|
|
}
|
|
|
|
|
|
|
|
and type_declaration =
|
|
|
|
{ typ_params: string loc option list;
|
|
|
|
typ_type : Types.type_declaration;
|
|
|
|
typ_cstrs: (core_type * core_type * Location.t) list;
|
|
|
|
typ_kind: type_kind;
|
|
|
|
typ_private: private_flag;
|
|
|
|
typ_manifest: core_type option;
|
|
|
|
typ_variance: (bool * bool) list;
|
|
|
|
typ_loc: Location.t }
|
|
|
|
|
|
|
|
and type_kind =
|
|
|
|
Ttype_abstract
|
|
|
|
| Ttype_variant of (Ident.t * string loc * core_type list * Location.t) list
|
|
|
|
| Ttype_record of
|
|
|
|
(Ident.t * string loc * mutable_flag * core_type * Location.t) list
|
|
|
|
|
|
|
|
and exception_declaration =
|
|
|
|
{ exn_params : core_type list;
|
|
|
|
exn_exn : Types.exception_declaration;
|
|
|
|
exn_loc : Location.t }
|
|
|
|
|
|
|
|
and class_type =
|
|
|
|
{ cltyp_desc: class_type_desc;
|
|
|
|
cltyp_type : Types.class_type;
|
|
|
|
cltyp_env : Env.t; (* BINANNOT ADDED *)
|
|
|
|
cltyp_loc: Location.t }
|
|
|
|
|
|
|
|
and class_type_desc =
|
|
|
|
Tcty_constr of Path.t * Longident.t loc * core_type list
|
|
|
|
| Tcty_signature of class_signature
|
|
|
|
| Tcty_fun of label * core_type * class_type
|
|
|
|
|
|
|
|
and class_signature = {
|
|
|
|
csig_self : core_type;
|
|
|
|
csig_fields : class_type_field list;
|
|
|
|
csig_type : Types.class_signature;
|
|
|
|
csig_loc : Location.t;
|
|
|
|
}
|
|
|
|
|
|
|
|
and class_type_field = {
|
|
|
|
ctf_desc : class_type_field_desc;
|
|
|
|
ctf_loc : Location.t;
|
|
|
|
}
|
|
|
|
|
|
|
|
and class_type_field_desc =
|
|
|
|
Tctf_inher of class_type
|
|
|
|
| Tctf_val of (string * mutable_flag * virtual_flag * core_type)
|
|
|
|
| Tctf_virt of (string * private_flag * core_type)
|
|
|
|
| Tctf_meth of (string * private_flag * core_type)
|
|
|
|
| Tctf_cstr of (core_type * core_type)
|
|
|
|
|
|
|
|
and class_declaration =
|
|
|
|
class_expr class_infos
|
|
|
|
|
|
|
|
and class_description =
|
|
|
|
class_type class_infos
|
|
|
|
|
|
|
|
and class_type_declaration =
|
|
|
|
class_type class_infos
|
|
|
|
|
|
|
|
and 'a class_infos =
|
|
|
|
{ ci_virt: virtual_flag;
|
|
|
|
ci_params: string loc list * Location.t;
|
|
|
|
ci_id_name : string loc;
|
|
|
|
ci_id_class: Ident.t;
|
|
|
|
ci_id_class_type : Ident.t;
|
|
|
|
ci_id_object : Ident.t;
|
|
|
|
ci_id_typesharp : Ident.t;
|
|
|
|
ci_expr: 'a;
|
|
|
|
ci_decl: Types.class_declaration;
|
|
|
|
ci_type_decl : Types.class_type_declaration;
|
|
|
|
ci_variance: (bool * bool) list;
|
|
|
|
ci_loc: Location.t }
|
|
|
|
|
1995-05-04 03:15:53 -07:00
|
|
|
(* Auxiliary functions over the a.s.t. *)
|
|
|
|
|
2012-05-31 01:07:31 -07:00
|
|
|
val iter_pattern_desc: (pattern -> unit) -> pattern_desc -> unit
|
|
|
|
val map_pattern_desc: (pattern -> pattern) -> pattern_desc -> pattern_desc
|
2003-08-11 20:11:38 -07:00
|
|
|
|
1995-05-04 03:15:53 -07:00
|
|
|
val let_bound_idents: (pattern * expression) list -> Ident.t list
|
1996-02-18 06:45:54 -08:00
|
|
|
val rev_let_bound_idents: (pattern * expression) list -> Ident.t list
|
2011-12-21 07:40:54 -08:00
|
|
|
val pat_bound_idents: pattern -> Ident.t list
|
2000-10-02 07:18:05 -07:00
|
|
|
|
2012-05-31 01:07:31 -07:00
|
|
|
val let_bound_idents_with_loc:
|
|
|
|
(pattern * expression) list -> (Ident.t * string loc) list
|
|
|
|
val rev_let_bound_idents_with_loc:
|
|
|
|
(pattern * expression) list -> (Ident.t * string loc) list
|
2012-05-30 07:52:37 -07:00
|
|
|
|
2000-10-02 07:18:05 -07:00
|
|
|
(* Alpha conversion of patterns *)
|
2012-05-31 01:07:31 -07:00
|
|
|
val alpha_pat: (Ident.t * Ident.t) list -> pattern -> pattern
|
2012-05-30 07:52:37 -07:00
|
|
|
|
2012-05-31 01:07:31 -07:00
|
|
|
val mknoloc: 'a -> 'a Asttypes.loc
|
|
|
|
val mkloc: 'a -> Location.t -> 'a Asttypes.loc
|
2012-05-30 07:52:37 -07:00
|
|
|
|
2012-05-31 01:07:31 -07:00
|
|
|
val pat_bound_idents: pattern -> (Ident.t * string Asttypes.loc) list
|