lua-debug icon indicating copy to clipboard operation
lua-debug copied to clipboard

Lua Debug Adapter for Visual Studio Code

Results 60 lua-debug issues
Sort by recently updated
recently updated
newest added

延迟绑定launcher,为了之后可以把frida模块改成动态库,让luadebug中可以使用,而不必使用两份frida代码在一个进程内

signature两个配置module和version,module需要用户填写,version自动从luaVersion字段读取 将attach的luaversion默认设置为unknown,允许launcher自动判断版本 ~将luadbug和launcher添加为module黑名单~ 将调试器目录下的所有module为黑名单

I use LUA in my C++ program as a scripting language. How can I debug my scripts that have custom functions from my C++ program? It can be sample code,...

- [x] launcher加入配置文件 - [x] 特征码扫描 - [x] luadebug导入表修复 - [ ] 测试 --- 配置文件: - [x] 文件路径为`plugins/tmp/ipc_{pid}_config` - [x] json格式 ```json { "version":"5.4", //强制版本号 "module":"path", //指定哪个模块为lua "functions":{ // 函数的特征码...

I'm using luabind to bind some classes in C++ to make them available in Lua: ```cpp auto defVector = luabind::class_("Vector"); defVector.def(luabind::tostring(luabind::self)); defVector.def(luabind::constructor()); defVector.def(luabind::constructor()); defVector.def_readwrite("x", &Vector3::x); defVector.def_readwrite("y", &Vector3::y); defVector.def_readwrite("z", &Vector3::z); //...

现在的实现不对

enhancement

Hi 👋 VS Code team engineer here 🙂 We're reworking how we parse [when clause contexts](https://code.visualstudio.com/api/references/when-clause-contexts) and noticed that we may break some of the when clauses used in your...

看起来似乎作者是中国人,便直接用中文描述 我在lua jit的官网[http://luajit.org/](url)下载了luajit的源码,并利用项目中的Makefile直接采用mingw编译 我将编译后得到的结果作为lua的解释器,并用这个插件调试,得到的结果如下 ![image](https://user-images.githubusercontent.com/88434542/205432316-bc0bec5e-b731-4207-b2b4-7c630c9d959c.png)

How would I debug multiple files (my main file `require`s other files)?