package libsail

  1. Overview
  2. Docs
type token =
  1. | Typ of Parse_ast.atyp
  2. | TwoCaret
  3. | Star
  4. | Plus
  5. | Op9r of Parse_ast.id
  6. | Op9l of Parse_ast.id
  7. | Op9 of Parse_ast.id
  8. | Op8r of Parse_ast.id
  9. | Op8l of Parse_ast.id
  10. | Op8 of Parse_ast.id
  11. | Op7r of Parse_ast.id
  12. | Op7l of Parse_ast.id
  13. | Op7 of Parse_ast.id
  14. | Op6r of Parse_ast.id
  15. | Op6l of Parse_ast.id
  16. | Op6 of Parse_ast.id
  17. | Op5r of Parse_ast.id
  18. | Op5l of Parse_ast.id
  19. | Op5 of Parse_ast.id
  20. | Op4r of Parse_ast.id
  21. | Op4l of Parse_ast.id
  22. | Op4 of Parse_ast.id
  23. | Op3r of Parse_ast.id
  24. | Op3l of Parse_ast.id
  25. | Op3 of Parse_ast.id
  26. | Op2r of Parse_ast.id
  27. | Op2l of Parse_ast.id
  28. | Op2 of Parse_ast.id
  29. | Op1r of Parse_ast.id
  30. | Op1l of Parse_ast.id
  31. | Op1 of Parse_ast.id
  32. | Op0r of Parse_ast.id
  33. | Op0l of Parse_ast.id
  34. | Op0 of Parse_ast.id
  35. | Minus
  36. | LtEq
  37. | Lt
  38. | In
  39. | GtEq
  40. | Gt
  41. | Exp of Parse_ast.exp
  42. | Eof
  43. | ColonColon
  44. | At
exception Error
val typ_eof : (Stdlib.Lexing.lexbuf -> token) -> Stdlib.Lexing.lexbuf -> Parse_ast.atyp
val exp_eof : (Stdlib.Lexing.lexbuf -> token) -> Stdlib.Lexing.lexbuf -> Parse_ast.exp
module MenhirInterpreter : sig ... end
module Incremental : sig ... end