dy
dy
 如果是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...
```g4 NORMALSTRING : '"' ( EscapeSequence | ~('\\'|'"') )* '"' ; CHARSTRING : '\'' ( EscapeSequence | ~('\''|'\\') )* '\'' ; LONGSTRING : '[' NESTED_STR ']' ; fragment EscapeSequence :...
`--[[some comment ]] local A = 10` unrecognized assignment expression 'local A = 10' 