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
|
|
|
(* Printing of values *)
|
|
|
|
|
1996-09-23 04:32:19 -07:00
|
|
|
open Types
|
1995-05-04 03:15:53 -07:00
|
|
|
|
|
|
|
val print_exception: Obj.t -> unit
|
|
|
|
val print_value: Env.t -> Obj.t -> type_expr -> unit
|
|
|
|
|
1997-03-22 12:16:52 -08:00
|
|
|
val install_printer : Path.t -> Types.type_expr -> (Obj.t -> unit) -> unit
|
|
|
|
val remove_printer : Path.t -> unit
|
|
|
|
|
1995-05-04 03:15:53 -07:00
|
|
|
val max_printer_depth: int ref
|
|
|
|
val max_printer_steps: int ref
|