lua-language-server icon indicating copy to clipboard operation
lua-language-server copied to clipboard

[Future Ruquest] Add tracking for `rawset()` in function runtime and etc

Open KeilAwk opened this issue 1 year ago • 0 comments

I hope that the code below in function can reach expectation:

function Set(id)
    rawset(_G, id, "test")
end
Set("test") ---set `_G.test`
print(test) -- `_G.test` is not exist there

Original Disscussion: https://github.com/LuaLS/lua-language-server/discussions/2499 I also found there was a similar situation: https://github.com/LuaLS/lua-language-server/discussions/2513

KeilAwk avatar Apr 03 '24 14:04 KeilAwk