1996-11-29 08:55:09 -08:00
|
|
|
(***********************************************************************)
|
|
|
|
(* *)
|
2011-07-27 07:17:02 -07:00
|
|
|
(* OCaml *)
|
1996-11-29 08:55:09 -08:00
|
|
|
(* *)
|
|
|
|
(* Jerome Vouillon, projet Cristal, INRIA Rocquencourt *)
|
2011-07-27 07:17:02 -07:00
|
|
|
(* OCaml port by John Malecki and Xavier Leroy *)
|
1996-11-29 08:55:09 -08: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. *)
|
1996-11-29 08:55:09 -08:00
|
|
|
(* *)
|
|
|
|
(***********************************************************************)
|
|
|
|
|
2000-03-06 14:12:09 -08:00
|
|
|
open Format
|
|
|
|
|
1996-11-29 08:55:09 -08:00
|
|
|
val max_printer_depth : int ref
|
|
|
|
val max_printer_steps : int ref
|
|
|
|
|
2000-03-06 14:12:09 -08:00
|
|
|
val print_exception: formatter -> Debugcom.Remote_value.t -> unit
|
1997-01-05 06:04:06 -08:00
|
|
|
val print_named_value :
|
2000-03-06 14:12:09 -08:00
|
|
|
int -> Parser_aux.expression -> Env.t ->
|
|
|
|
Debugcom.Remote_value.t -> formatter -> Types.type_expr ->
|
1997-01-05 06:04:06 -08:00
|
|
|
unit
|
|
|
|
|
|
|
|
val reset_named_values : unit -> unit
|
1997-03-22 12:16:52 -08:00
|
|
|
val find_named_value : int -> Debugcom.Remote_value.t * Types.type_expr
|
1997-02-14 08:30:00 -08:00
|
|
|
|
2000-03-06 14:12:09 -08:00
|
|
|
val install_printer :
|
2010-01-22 04:48:24 -08:00
|
|
|
Path.t -> Types.type_expr -> formatter ->
|
2001-07-03 04:04:10 -07:00
|
|
|
(formatter -> Obj.t -> unit) -> unit
|
1997-02-14 08:30:00 -08:00
|
|
|
val remove_printer : Path.t -> unit
|