Module Coqdeplib.Lexer

type qualid = string list
type load =
  1. | Logical of string
  2. | Physical of string
type loc = {
  1. loc_start : int;
  2. loc_end : int;
}
type coq_token =
  1. | Require of qualid option * (loc * qualid) list
  2. | Declare of string list
  3. | Load of load
  4. | External of loc * qualid * string
exception Fin_fichier
exception Syntax_error of loc
val coq_action : Stdlib.Lexing.lexbuf -> coq_token