dy

Results 5 issues of dy

![image](https://user-images.githubusercontent.com/37564912/232703622-c4a43c98-dca5-41da-bf10-c7e3ad2f6b26.png) 如果是require引入define.lua则在test4.lua的CC字样处查找所有引用只会显示出define.lua的结果,不会出现test4.lua中的CC引用; 但如果是import引入,则会成功查找到所有引用,包括test4和define两个文件中的所有CC

将luapath设置为“LuaHelper\luahelper-vscode\debugger\luasocket\win\x64\lua5.1\lua51.exe”后启动单文件调试,无法命中函数内部的断点,但是可以单步执行,使用f11进入某个函数,如果不使用f11会不进入任何函数

`local a = GetClass(data).OtherFunc(self, ohterData)` GetClass is a function that returns an object with a member function OtherFunc. GetClass(data).OtherFunc(self, otherData) should be parsed as a tree structure where the root...

lua

```g4 NORMALSTRING : '"' ( EscapeSequence | ~('\\'|'"') )* '"' ; CHARSTRING : '\'' ( EscapeSequence | ~('\''|'\\') )* '\'' ; LONGSTRING : '[' NESTED_STR ']' ; fragment EscapeSequence :...

lua

`--[[some comment ]] local A = 10` unrecognized assignment expression 'local A = 10' ![image](https://github.com/antlr/grammars-v4/assets/37564912/6041d0c0-ce4a-4fc0-940b-789a07ee176a)

lua