Robert Virding
Robert Virding
Hi, I am getting back into luerl now. Did you send me that plugin, I can't see it anywhere? How does VerneMQ use luerl?
I tested this from the erlang shell putting the config in the file "v.lua" then doing ``` 7> luerl:do("local local = dofile(\"v.lua\")", S0). ``` and it seemed to work.
How were you calling this?
So `load` can handle multiple arguments but it is strict on the types of the first 3 arguments. If they are given they must be strings otherwise you get an...
How would it be interpreted? One way would be that all the `nil` arguments get their default value. Would this be a reasonable interpretation? Would it apply everywhere?
I will have a go and try to fix it. There is one limitation with load which is a bit more difficult to fix and that is that it currently...
I will gradually upgrade the internal functions. If you come across where an explicit nil as an argument does not mean use the default then let me know.
How do you mean? In the master branch?
@libitx Sorry I missed you last reply here. Would it be enough for me to create a tag `0.5.0-beta` which points in to a branch, or does it have to...
The functions `luerl:get_table/2` and `luerl:get_table1/2` are just wrappers around `luerl_emul:get_table_keys/2/3` where the first one encodes the list of keys into internal format. You don't have to explicitly find the first...