1996-11-29 08:55:09 -08:00
|
|
|
(***********************************************************************)
|
|
|
|
(* *)
|
|
|
|
(* Objective Caml *)
|
|
|
|
(* *)
|
|
|
|
(* Jerome Vouillon, projet Cristal, INRIA Rocquencourt *)
|
|
|
|
(* Objective Caml port by John Malecki and Xavier Leroy *)
|
|
|
|
(* *)
|
|
|
|
(* Copyright 1996 Institut National de Recherche en Informatique et *)
|
|
|
|
(* Automatique. Distributed only by permission. *)
|
|
|
|
(* *)
|
|
|
|
(***********************************************************************)
|
|
|
|
|
|
|
|
(* $Id$ *)
|
|
|
|
|
|
|
|
val max_printer_depth : int ref
|
|
|
|
val max_printer_steps : int ref
|
|
|
|
|
1997-01-05 06:04:06 -08:00
|
|
|
val print_value :
|
|
|
|
int -> Debugcom.remote_value -> Types.type_expr -> Env.t -> unit
|
|
|
|
val print_named_value :
|
1997-02-25 06:40:10 -08:00
|
|
|
int -> Parser_aux.expression ->
|
|
|
|
Debugcom.remote_value -> Types.type_expr -> Env.t ->
|
1997-01-05 06:04:06 -08:00
|
|
|
unit
|
|
|
|
|
|
|
|
val reset_named_values : unit -> unit
|
|
|
|
val find_named_value : int -> Debugcom.remote_value * Types.type_expr
|
1997-02-14 08:30:00 -08:00
|
|
|
|
|
|
|
val install_printer : Path.t -> Types.type_expr -> (Obj.t -> unit) -> unit
|
|
|
|
val remove_printer : Path.t -> unit
|