lua
lua copied to clipboard
The most ergomonic interface to Luerl in Elixir
## Idea Similar to how luaerl [has this](https://hexdocs.pm/luerl/luerl_sandbox.html) has a way of specifying max reductions, it'd be neat to have that ability to limit both the max reductions (in BEAM-land)...
Just a starting point for #77 ! I saw that this starts to get into luerl, and I don't really know that well enough to touch what probably needs to...
Right now, there are a few different codepaths for setting and getting data out of Lua. We have validations that check if the data is encoded, but there could be...
When we have the following stacktrace ```elixir [ {{:luerl_lib_basic, :error_call, :undefined}, ["this step will fail"], [file: "luerl_lib_basic.erl"]}, {"-no-name-", [tref: 196], [file: "-no-file-", line: 4]}, {"-no-name-", [], [file: "-no-file-", line: 38]}...
This bumps the luerl dependency to 1.5.0 and makes tests pass again. Failing tests were either due to: - unicode Handling (this PR basically reverses 598e0ae because it seems now...
I often get `{:undefined_function, nil}` but it would be really helpful if we could include the function name which Lua was trying to call
Is there any way to get the parsed AST from a Lua script? I am looking into making a visual editor for the lua scripts that are embedded into my...
Hi! Using `version 0.3.0`, it seems there is a problem with the formating of a `Lua.RuntimeException` with the following code: ```elixir code = """ for i in pairs(nil) do print(i)...