2002-11-02 14:36:46 -08:00
|
|
|
(***********************************************************************)
|
|
|
|
(* *)
|
2011-07-27 07:17:02 -07:00
|
|
|
(* OCaml *)
|
2002-11-02 14:36:46 -08:00
|
|
|
(* *)
|
|
|
|
(* Damien Doligez, projet Moscova, INRIA Rocquencourt *)
|
|
|
|
(* *)
|
|
|
|
(* Copyright 2002 Institut National de Recherche en Informatique et *)
|
|
|
|
(* en Automatique. All rights reserved. This file is distributed *)
|
|
|
|
(* under the terms of the Q Public License version 1.0. *)
|
|
|
|
(* *)
|
|
|
|
(***********************************************************************)
|
|
|
|
|
|
|
|
type line_tracker;;
|
|
|
|
val open_tracker : string -> out_channel -> line_tracker
|
|
|
|
val close_tracker : line_tracker -> unit
|
|
|
|
val copy_chunk :
|
2003-07-26 14:06:21 -07:00
|
|
|
in_channel -> out_channel -> line_tracker -> Syntax.location -> bool -> unit
|
2002-11-02 14:36:46 -08:00
|
|
|
val output_mem_access : out_channel -> int -> unit
|
|
|
|
val output_memory_actions :
|
|
|
|
string -> out_channel -> Lexgen.memory_action list -> unit
|
2007-01-29 08:44:16 -08:00
|
|
|
val output_env :
|
2013-09-04 08:12:37 -07:00
|
|
|
in_channel -> out_channel -> line_tracker ->
|
2007-01-29 08:44:16 -08:00
|
|
|
(Lexgen.ident * Lexgen.ident_info) list -> unit
|
2002-12-09 02:44:46 -08:00
|
|
|
val output_args : out_channel -> string list -> unit
|
2014-03-14 08:39:32 -07:00
|
|
|
val output_refill_handler :
|
|
|
|
in_channel -> out_channel -> line_tracker -> Syntax.location option -> bool
|
2003-08-29 10:33:45 -07:00
|
|
|
|
|
|
|
val quiet_mode : bool ref;;
|