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