1995-08-09 08:06:35 -07:00
|
|
|
(***********************************************************************)
|
|
|
|
(* *)
|
1996-04-30 07:53:58 -07:00
|
|
|
(* Objective Caml *)
|
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
|
|
|
(* *)
|
|
|
|
(***********************************************************************)
|
|
|
|
|
|
|
|
(* $Id$ *)
|
|
|
|
|
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 *)
|
|
|
|
|
|
|
|
type pattern =
|
|
|
|
{ pat_desc: pattern_desc;
|
|
|
|
pat_loc: Location.t;
|
1998-04-06 02:23:01 -07:00
|
|
|
pat_type: type_expr;
|
|
|
|
pat_env: Env.t }
|
1995-05-04 03:15:53 -07:00
|
|
|
|
|
|
|
and pattern_desc =
|
|
|
|
Tpat_any
|
|
|
|
| Tpat_var of Ident.t
|
|
|
|
| Tpat_alias of pattern * Ident.t
|
|
|
|
| Tpat_constant of constant
|
|
|
|
| Tpat_tuple of pattern list
|
|
|
|
| Tpat_construct of constructor_description * pattern list
|
2008-01-11 08:13:18 -08:00
|
|
|
| Tpat_variant of label * pattern option * row_desc ref
|
1995-05-04 03:15:53 -07:00
|
|
|
| Tpat_record of (label_description * pattern) list
|
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
|
1995-05-04 03:15:53 -07:00
|
|
|
|
1999-11-30 08:07:38 -08:00
|
|
|
type partial = Partial | Total
|
2000-09-04 01:49:32 -07:00
|
|
|
type optional = Required | Optional
|
1999-11-30 08:07:38 -08:00
|
|
|
|
1995-05-04 03:15:53 -07:00
|
|
|
type expression =
|
|
|
|
{ exp_desc: expression_desc;
|
|
|
|
exp_loc: Location.t;
|
1996-09-23 04:33:27 -07:00
|
|
|
exp_type: type_expr;
|
|
|
|
exp_env: Env.t }
|
1995-05-04 03:15:53 -07:00
|
|
|
|
|
|
|
and expression_desc =
|
|
|
|
Texp_ident of Path.t * value_description
|
|
|
|
| Texp_constant of constant
|
|
|
|
| Texp_let of rec_flag * (pattern * expression) list * expression
|
1999-11-30 08:07:38 -08:00
|
|
|
| Texp_function of (pattern * expression) list * partial
|
2000-09-04 01:49:32 -07:00
|
|
|
| Texp_apply of expression * (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
|
|
|
|
| Texp_construct of constructor_description * expression list
|
1999-11-30 08:07:38 -08:00
|
|
|
| Texp_variant of label * expression option
|
1998-04-27 08:17:11 -07:00
|
|
|
| Texp_record of (label_description * expression) list * expression option
|
1995-05-04 03:15:53 -07:00
|
|
|
| Texp_field of expression * label_description
|
|
|
|
| Texp_setfield of expression * label_description * expression
|
|
|
|
| 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
|
|
|
|
Ident.t * expression * expression * direction_flag * expression
|
|
|
|
| Texp_when of expression * expression
|
1997-05-11 14:48:21 -07:00
|
|
|
| Texp_send of expression * meth
|
1998-08-31 12:41:24 -07:00
|
|
|
| Texp_new of Path.t * class_declaration
|
1996-04-22 04:15:41 -07:00
|
|
|
| Texp_instvar of Path.t * Path.t
|
|
|
|
| Texp_setinstvar of Path.t * Path.t * expression
|
|
|
|
| Texp_override of Path.t * (Path.t * expression) list
|
1998-02-26 04:54:44 -08:00
|
|
|
| Texp_letmodule of Ident.t * 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
|
2003-11-25 01:20:45 -08:00
|
|
|
| Texp_object of class_structure * class_signature * string list
|
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;
|
2003-11-25 01:20:45 -08:00
|
|
|
cl_type: class_type;
|
|
|
|
cl_env: Env.t }
|
1998-06-24 12:22:26 -07:00
|
|
|
|
|
|
|
and class_expr_desc =
|
|
|
|
Tclass_ident of Path.t
|
|
|
|
| Tclass_structure of class_structure
|
1999-11-30 08:07:38 -08:00
|
|
|
| Tclass_fun of pattern * (Ident.t * expression) list * class_expr * partial
|
2000-09-04 01:49:32 -07:00
|
|
|
| Tclass_apply of class_expr * (expression option * optional) list
|
1998-06-24 12:22:26 -07:00
|
|
|
| Tclass_let of rec_flag * (pattern * expression) list *
|
|
|
|
(Ident.t * expression) list * class_expr
|
|
|
|
| Tclass_constraint of class_expr * string list * string list * Concr.t
|
|
|
|
(* Visible instance variables, methods and concretes methods *)
|
|
|
|
|
|
|
|
and class_structure =
|
|
|
|
{ cl_field: class_field list;
|
|
|
|
cl_meths: Ident.t Meths.t }
|
1996-04-22 04:15:41 -07:00
|
|
|
|
1998-02-26 04:54:44 -08:00
|
|
|
and class_field =
|
1998-06-24 12:22:26 -07:00
|
|
|
Cf_inher of class_expr * (string * Ident.t) list * (string * Ident.t) list
|
|
|
|
(* Inherited instance variables and concrete methods *)
|
2006-04-04 19:28:13 -07:00
|
|
|
| Cf_val of string * Ident.t * expression option * bool
|
|
|
|
(* None = virtual, true = override *)
|
1996-05-16 09:10:16 -07:00
|
|
|
| Cf_meth of string * expression
|
1998-06-24 12:22:26 -07:00
|
|
|
| Cf_let of rec_flag * (pattern * expression) list *
|
|
|
|
(Ident.t * expression) list
|
|
|
|
| Cf_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;
|
1996-09-23 04:33:27 -07:00
|
|
|
mod_type: module_type;
|
|
|
|
mod_env: Env.t }
|
1995-05-04 03:15:53 -07:00
|
|
|
|
|
|
|
and module_expr_desc =
|
|
|
|
Tmod_ident of Path.t
|
|
|
|
| Tmod_structure of structure
|
|
|
|
| Tmod_functor of Ident.t * module_type * module_expr
|
|
|
|
| Tmod_apply of module_expr * module_expr * module_coercion
|
|
|
|
| Tmod_constraint of module_expr * module_type * module_coercion
|
|
|
|
|
|
|
|
and structure = structure_item list
|
|
|
|
|
|
|
|
and structure_item =
|
|
|
|
Tstr_eval of expression
|
|
|
|
| Tstr_value of rec_flag * (pattern * expression) list
|
|
|
|
| Tstr_primitive of Ident.t * value_description
|
|
|
|
| Tstr_type of (Ident.t * type_declaration) list
|
|
|
|
| Tstr_exception of Ident.t * exception_declaration
|
2000-03-12 05:10:29 -08:00
|
|
|
| Tstr_exn_rebind of Ident.t * Path.t
|
1995-05-04 03:15:53 -07:00
|
|
|
| Tstr_module of Ident.t * module_expr
|
2003-06-19 08:53:53 -07:00
|
|
|
| Tstr_recmodule of (Ident.t * module_expr) list
|
1995-05-04 03:15:53 -07:00
|
|
|
| Tstr_modtype of Ident.t * module_type
|
|
|
|
| Tstr_open of Path.t
|
2006-04-04 19:28:13 -07:00
|
|
|
| Tstr_class of
|
|
|
|
(Ident.t * int * string list * class_expr * virtual_flag) list
|
1998-06-24 12:22:26 -07:00
|
|
|
| Tstr_cltype of (Ident.t * cltype_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
|
|
|
|
|
|
|
(* Auxiliary functions over the a.s.t. *)
|
|
|
|
|
2003-08-11 20:11:38 -07:00
|
|
|
val iter_pattern_desc : (pattern -> unit) -> pattern_desc -> unit
|
|
|
|
val map_pattern_desc : (pattern -> pattern) -> pattern_desc -> pattern_desc
|
|
|
|
|
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
|
2000-10-02 07:18:05 -07:00
|
|
|
|
|
|
|
(* Alpha conversion of patterns *)
|
|
|
|
val alpha_pat : (Ident.t * Ident.t) list -> pattern -> pattern
|
|
|
|
|