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-07-25 04:40:07 -07:00
|
|
|
(* Compute constructor and label descriptions from type declarations,
|
|
|
|
determining their representation. *)
|
|
|
|
|
|
|
|
open Asttypes
|
1996-09-23 04:33:27 -07:00
|
|
|
open Types
|
1995-07-25 04:40:07 -07:00
|
|
|
|
|
|
|
val constructor_descrs:
|
2003-07-02 02:14:35 -07:00
|
|
|
type_expr -> (string * type_expr list) list -> private_flag ->
|
1995-07-25 04:40:07 -07:00
|
|
|
(string * constructor_description) list
|
|
|
|
val exception_descr:
|
|
|
|
Path.t -> type_expr list -> constructor_description
|
|
|
|
val label_descrs:
|
2000-03-21 06:43:25 -08:00
|
|
|
type_expr -> (string * mutable_flag * type_expr) list ->
|
2010-01-22 04:48:24 -08:00
|
|
|
record_representation -> private_flag ->
|
2003-07-02 02:14:35 -07:00
|
|
|
(string * label_description) list
|
1999-10-29 07:42:37 -07:00
|
|
|
|
|
|
|
exception Constr_not_found
|
|
|
|
|
|
|
|
val find_constr_by_tag:
|
|
|
|
constructor_tag -> (string * type_expr list) list -> string * type_expr list
|