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/Lua/index.html

Module LuaSource

Sourcemodule type VALUE = sig ... end
Sourcemodule type USERDATA = sig ... end
Sourcemodule type AST = Luaast.S
Sourcemodule Parser : sig ... end
Sourcemodule Lib : sig ... end
Sourcemodule type EVALUATOR = sig ... end
Sourcemodule MakeEval (T : Lib.USERTYPE) (L : Lib.USERCODE with type 'a userdata' = 'a T.t) : EVALUATOR with type 'a Value.userdata' = 'a T.t
Sourcemodule Empty : sig ... end
Sourcemodule type INTERP = sig ... end
Sourcemodule MakeInterp (MakeParser : Parser.MAKER) (I : EVALUATOR) : INTERP with module Value = I.Value and module Ast = I.Ast
Sourcemodule Run (I : INTERP) : sig ... end