Module IgnoreParser

module IgnoreParser: sig .. end

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