1996-04-22 04:15:41 -07:00
|
|
|
(***********************************************************************)
|
|
|
|
(* *)
|
1996-04-30 07:53:58 -07:00
|
|
|
(* Objective Caml *)
|
1996-04-22 04:15:41 -07:00
|
|
|
(* *)
|
|
|
|
(* Jerome Vouillon, projet Cristal, INRIA Rocquencourt *)
|
|
|
|
(* *)
|
|
|
|
(* Copyright 1996 Institut National de Recherche en Informatique et *)
|
|
|
|
(* Automatique. Distributed only by permission. *)
|
|
|
|
(* *)
|
|
|
|
(***********************************************************************)
|
|
|
|
|
|
|
|
(* $Id$ *)
|
|
|
|
|
|
|
|
(* Module [Oo]: object-oriented extension *)
|
|
|
|
|
|
|
|
val copy : (< .. > as 'a) -> 'a
|
1996-04-24 04:08:36 -07:00
|
|
|
(* [Oo.copy o] returns a copy of object [o], that is a fresh
|
|
|
|
object with the same methods and instance variables as [o] *)
|
1996-04-22 04:15:41 -07:00
|
|
|
|
|
|
|
(*--*)
|
|
|
|
|
|
|
|
(*** For system use only, not for the casual user *)
|
|
|
|
|
|
|
|
(* Methods *)
|
|
|
|
type label
|
|
|
|
val new_method: string -> label
|
|
|
|
|
|
|
|
(* Classes *)
|
|
|
|
type table
|
|
|
|
type item
|
|
|
|
type obj_init
|
|
|
|
type class_info
|
|
|
|
val set_initializer: table -> obj_init -> unit
|
1997-05-11 14:48:21 -07:00
|
|
|
val inheritance: table -> class_info -> string list -> string list -> unit
|
1996-04-22 04:15:41 -07:00
|
|
|
val get_method: table -> label -> item
|
1997-05-11 14:48:21 -07:00
|
|
|
val set_method: table -> string -> item -> unit
|
|
|
|
val get_method_label: table -> string -> label
|
1996-04-22 04:15:41 -07:00
|
|
|
val get_variable: table -> string -> int
|
|
|
|
val hide_variable: table -> string -> unit
|
|
|
|
val get_private_variable: table -> string -> int
|
1997-05-11 14:48:21 -07:00
|
|
|
val create_class: class_info -> string list -> (table -> unit) -> unit
|
1996-04-22 04:15:41 -07:00
|
|
|
|
|
|
|
(* Objects *)
|
|
|
|
type t
|
|
|
|
type object
|
|
|
|
val send: object -> label -> t
|
|
|
|
|
1996-10-26 08:44:18 -07:00
|
|
|
(* Parameters *)
|
|
|
|
|
|
|
|
val compact_table : bool ref
|
|
|
|
val copy_parent : bool ref
|
|
|
|
val clean_when_copying : bool ref
|
|
|
|
val retry_count : int ref
|
|
|
|
val bucket_small_size : int ref
|
|
|
|
|
1996-04-22 04:15:41 -07:00
|
|
|
(* Statistics *)
|
|
|
|
type stats =
|
|
|
|
{ classes: int; labels: int; methods: int; inst_vars: int; buckets: int;
|
|
|
|
distrib : int array; small_bucket_count: int; small_bucket_max: int }
|
|
|
|
val stats: unit -> stats
|
|
|
|
val show_buckets: unit -> unit
|