Module Benl_parser

module Benl_parser: sig .. end

type token = 
| TRUE
| STRING of string
| SOURCE
| SEMICOLON
| RPAREN
| REGEXP of Benl_types.regexp
| RBRACKET
| OR
| NOT
| MATCH
| LT
| LPAREN
| LE
| LBRACKET
| IDENT of string
| GT
| GE
| FIELD of Benl_types.field
| FALSE
| EQ
| EOF
| AND
exception Error
val full_expr : (Stdlib.Lexing.lexbuf -> token) ->
Stdlib.Lexing.lexbuf -> Benl_types.expr
val config_file : (Stdlib.Lexing.lexbuf -> token) ->
Stdlib.Lexing.lexbuf -> Benl_types.config