Module Ez_toml.Internal_parser

type token =
  1. | STRING_MULTILINE of Internal_types.string_format * string
  2. | STRING_INLINE of Internal_types.string_format * string
  3. | SET
  4. | RBRACK
  5. | RBRACE
  6. | LBRACK
  7. | LBRACE
  8. | KEY of string
  9. | INTEGER of string
  10. | INIT
  11. | FLOAT of string
  12. | EQUAL
  13. | EOL
  14. | EOF
  15. | DOT
  16. | DATE of string
  17. | COMMENT of string
  18. | COMMA
  19. | CLEAR
  20. | BOOL of bool
  21. | BANG
exception Error
val toml : (Stdlib.Lexing.lexbuf -> token) -> Stdlib.Lexing.lexbuf -> string Internal_types.loc list * (Internal_types.line * string Internal_types.loc list) list