Alexey Melnichuk

Results 134 comments of Alexey Melnichuk

> do you have a test case or a description where this may happen? No. I just read the code :)

I working on VSCode extension for ModDebug library. My main concerns is it safe to move lines like [capture_vars(stack-1, coro_debugee)](https://github.com/pkulchenko/MobDebug/blob/master/src/mobdebug.lua#L821) to a separate function.

Luarocks does not allows specify lua version for rock. So it does not very useful. Checkout luacom rock wich install binaries for Lua 5.1 for any Lua version

I have rockspek in my fork. https://ci.appveyor.com/project/moteus/luacom

> Is it possible to get a binary somewhere? Have troubles building You can fork my repo, add `artifacts` to the appveyour.yaml file and run your own task on the...

I just update my appveour.yaml file to export dll as [artifact](https://ci.appveyor.com/project/moteus/luacom/build/job/x490gslnxrq8412b/artifacts)

You also have to rebuild `luacom5.loh`. This file also depends on Lua version

I only can suggest trying [my fork](https://github.com/moteus/luacom) which works with Lua 5.3 I remembering that I export `luacom` to the global namespace.

May be it relates to #22 ?

This error means that Lua can find module file but it can not load it. E.g. dll is for different arch (x64 but Lua is x86). Or if there no...