sig
  type token =
      COMMA
    | DOT
    | DOTDOT
    | AT
    | END
    | IGNORE
    | IN
    | EOF
    | IDENT of string
    | INTEGER of int
    | STRING of string
  val file :
    (Lexing.lexbuf -> IgnoreParser.token) -> Lexing.lexbuf -> Ignore.t list
end