package lua-ml

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type
type token =
  1. | EOF
  2. | COMMA
  3. | LBRA
  4. | RBRA
  5. | LT
  6. | GT
  7. | COLON
  8. | SEMI
  9. | HAT
  10. | STAR
  11. | SLASH
  12. | LPAR
  13. | RPAR
  14. | GETS
  15. | PLUS
  16. | MINUS
  17. | DOT
  18. | LSQ
  19. | RSQ
  20. | WRONGTOKEN
  21. | NIL
  22. | IF
  23. | THEN
  24. | ELSE
  25. | ELSEIF
  26. | WHILE
  27. | DO
  28. | REPEAT
  29. | UNTIL
  30. | CASE
  31. | GLOBMATCH
  32. | OF
  33. | END
  34. | RETURN
  35. | LOCAL
  36. | FUNCTION
  37. | DOTS
  38. | ARROW
  39. | NUMBER of float
  40. | STRING of string
  41. | NAME of string
  42. | DEBUG_PRAGMA of int
  43. | AND
  44. | OR
  45. | EQ
  46. | NE
  47. | LE
  48. | GE
  49. | CONC
  50. | UNARY
  51. | NOT
module type S = sig ... end
module type MAKER = functor (Ast : Luaast.S) -> sig ... end
OCaml

Innovation. Community. Security.