Module Errorloc

module Errorloc: sig .. end
Type for source-file locations

val newline : unit -> unit
val getPosition : unit -> Lexing.position * Lexing.position
val setCurrentLine : int -> unit
val setCurrentFile : string -> unit
val setCurrentWorkingDirectory : string -> unit
type location = {
   file :string; (*The file name*)
   line :int; (*The line number*)
}
Type for source-file locations
val d_loc : location Pretty_utils.formatter
val parse_error : string -> 'a
val locUnknown : location
An unknown location for use when you need one but you don't have one
val startParsing : ?useBasename:bool -> string -> Lexing.lexbuf
val finishParsing : unit -> unit