Results 10 comments of metaworm

All right. Another way is [SymFromName](https://docs.microsoft.com/en-us/windows/win32/api/dbghelp/nf-dbghelp-symfromname), but rely on the dbghelp.dll. There really isn't a way like dlopen on Windows

对,文档里看到这个了,但这个好像只是左侧目录,不影响文章右侧的目录?

In the decompiled results, labels are used to indicate jump relationships, but they do not necessarily guarantee that the code can still be compiled by Lua. In some cases, restoration...

暂时不会考虑编译可执行文件来发布,WASM的移植性很好,网页版已经包含了全部功能 可能你需要批量反编译,我后续会加上这样的功能

不太明白你的问题,据我所知xlua框架使用的lua就是官方的

Please provide your bytecode file and make sure your lua bytecode file is officially lua compiled

Thank you for your meticulous testing. I have fixed many issues you reported, but it has also introduced new problems. I need some more time to continue refining before I...

You found the key problem, yes, the decompilation of and-or statements is a big problem, lua compiles the "and/or" operators as conditional jumps instead of handling them with special instructions,...

@marsinator358 Thank you for your advice. The handling of this part is really a little complicated. I will try to improve it when I have a long time.

因为很多魔改过opcode的luac,往往也会把字节码文件格式也改了,所以不太容易提供一个统一的接口; 我提供了加载自定义luac-parser的功能,参考我wiki里的说明还有这个项目 https://github.com/metaworm/openwrt-luac-parser 自己写一个parser即可