Module Drom_toml.Menhir_parser
type token =
| STRING of string
| SET
| RBRACK
| RBRACE
| LBRACK
| LBRACE
| KEY of string
| INTEGER of string
| INIT
| FLOAT of string
| EQUAL
| EOF
| DOT
| DATE of float
| COMMA
| CLEAR
| BOOL of bool
val toml :
(Stdlib.Lexing.lexbuf -> token) ->
Stdlib.Lexing.lexbuf ->
Types.table