2004-08-12 05:57:00 -07:00
|
|
|
(***********************************************************************)
|
|
|
|
(* *)
|
2011-07-27 07:17:02 -07:00
|
|
|
(* OCaml *)
|
2004-08-12 05:57:00 -07:00
|
|
|
(* *)
|
|
|
|
(* Xavier Leroy, projet Cristal, INRIA Rocquencourt *)
|
|
|
|
(* *)
|
|
|
|
(* Copyright 2004 Institut National de Recherche en Informatique et *)
|
|
|
|
(* en Automatique. All rights reserved. This file is distributed *)
|
|
|
|
(* under the terms of the GNU Library General Public License, with *)
|
|
|
|
(* the special exception on linking described in file ../LICENSE. *)
|
|
|
|
(* *)
|
|
|
|
(***********************************************************************)
|
|
|
|
|
2012-03-14 09:03:15 -07:00
|
|
|
(** Run-time support for recursive modules.
|
|
|
|
All functions in this module are for system use only, not for the
|
|
|
|
casual user. *)
|
|
|
|
|
2004-08-12 05:57:00 -07:00
|
|
|
type shape =
|
|
|
|
| Function
|
|
|
|
| Lazy
|
|
|
|
| Class
|
|
|
|
| Module of shape array
|
2014-03-09 19:54:02 -07:00
|
|
|
| Value of Obj.t
|
2004-08-12 05:57:00 -07:00
|
|
|
|
|
|
|
val init_mod: string * int * int -> shape -> Obj.t
|
|
|
|
val update_mod: shape -> Obj.t -> Obj.t -> unit
|