heanrum

Results 4 issues of heanrum

![image](https://github.com/deitry/vscode-unity-debug/assets/12297711/7e796a93-ad74-4279-b886-6fbce0a12442) ![image](https://github.com/deitry/vscode-unity-debug/assets/12297711/97e5bec3-1b58-4399-b926-6d2e4a28e995) I open 2 unity editors,while i try to debug getting an error"no unity process found". How can I solve it

第二次执行emmyHelper这个文件的时候,emmyHelper这个全局变量已经存在了,就不会把emmy赋值给emmyHelper。emmyHelperInit只会把createNode函数添加到emmyHelper不会添加到emmy上,所以第二次启动调试器无法找到emmy.createNode函数导致Bug。

emmy_debugger.cpp 450行左右,会在lua_next遍历表的过程中对一个LUA_TNUMBER的key执行lua_tostring操作,但是我看lua官方手册这种操作会引起报错,我这边碰见这个报错就会导致断点失效了。

bug

![image](https://github.com/EmmyLua/EmmyLuaDebugger/assets/12297711/07c5e9e1-7145-47ef-895c-52c82231b1cc) 我在尝试用这个插件调试其它的lua虚拟机的代码,但是发现watch窗口不能展开一个table查看table里面的内容,但是table的size以及直接用index查看table内部的值都是正常的,想问下这个可能是什么原因。