Module Acutis_internals.Parser

type token =
  1. | WITH
  2. | UNESCAPE_END
  3. | UNESCAPE_BEGIN
  4. | TRUE
  5. | TILDE
  6. | TEXT of string
  7. | STRING of string
  8. | RIGHT_PAREN
  9. | RIGHT_BRACK
  10. | RIGHT_BRACE
  11. | RIGHT_ANGLE
  12. | QUESTION
  13. | PIPE
  14. | NULL
  15. | MATCH
  16. | MAP_DICT
  17. | MAP
  18. | LEFT_PAREN
  19. | LEFT_BRACK
  20. | LEFT_BRACE
  21. | LEFT_ANGLE
  22. | INTERFACE
  23. | INT of int
  24. | ID of string
  25. | HASH
  26. | FMT_I
  27. | FMT_F
  28. | FMT_B
  29. | FLOAT of float
  30. | FALSE
  31. | EXCLAMATION
  32. | EQUALS
  33. | EOF
  34. | ELLIPSIS
  35. | DOT
  36. | COMPONENT of string
  37. | COMMENT of string
  38. | COMMA
  39. | COLON
  40. | BACKSLASH
  41. | AT
exception Error
val interface_standalone : (Stdlib.Lexing.lexbuf -> token) -> Stdlib.Lexing.lexbuf -> Ast.interface
val acutis : (Stdlib.Lexing.lexbuf -> token) -> Stdlib.Lexing.lexbuf -> Ast.t
module MenhirInterpreter : sig ... end
module Incremental : sig ... end