package lua-ml

  1. Overview
  2. Docs
An embeddable Lua 2.5 interpreter implemented in OCaml

Install

dune-project
 Dependency

Authors

Maintainers

Sources

0.9.5.tar.gz
md5=51e4faf93439065b839972394d232491
sha512=138fe08730276941206c95af2488a1d46c28bdb0f15804491fbcd22fecca5515afb33b8c666beb45f2d8d07df9de71d5c4982998f32701cd14b6fa29bab440ee

doc/lua-ml/Luaparser_tokens/index.html

Module Luaparser_tokensSource

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