Ez_toml.Internal_parser
type token =
| STRING_MULTILINE of Internal_types.string_format * string
| STRING_INLINE of Internal_types.string_format * string
| SET
| RBRACK
| RBRACE
| LBRACK
| LBRACE
| KEY of string
| INTEGER of string
| INIT
| FLOAT of string
| EQUAL
| EOL
| EOF
| DOT
| DATE of string
| COMMENT of string
| COMMA
| CLEAR
| BOOL of bool
| BANG
val toml :
(Stdlib.Lexing.lexbuf -> token) ->
Stdlib.Lexing.lexbuf ->
string Internal_types.loc list
* (Internal_types.line * string Internal_types.loc list) list