Module Parser


module Parser: sig  end


type token =
| ID of string
| LPAREN
| RPAREN
| COMMA
| ARROW
| WHERE
| IN
| NOT
| EOL
val main : (Lexing.lexbuf -> token) -> Lexing.lexbuf -> ParserTypes.parsed_main