1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27
|
(***********************************************************************)
(* *)
(* HEVEA *)
(* *)
(* Luc Maranget, projet PARA, INRIA Rocquencourt *)
(* *)
(* Copyright 1998 Institut National de Recherche en Informatique et *)
(* Automatique. Distributed only by permission. *)
(* *)
(***********************************************************************)
type saved
val check : unit -> saved
val hot : saved -> unit
val get : unit -> string
val set : string -> Lexing.lexbuf -> unit
val restore : unit -> unit
type t
val get_pos : unit -> t
val get_lineno : unit -> int
val print_pos : unit -> unit
val print_fullpos : unit -> unit
val print_this_pos : t -> unit
val print_this_fullpos : t -> unit
|