We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Describe the bug
can't get completion from return setmetatable()
return setmetatable()
Expected behavior
because setmetatable(t,t2) will return t
setmetatable(t,t2)
hope get completion from return setmetatable(t,t2)
return setmetatable(t,t2)
now I have to
t = setmetatable(t,t2) return t
The text was updated successfully, but these errors were encountered:
I cannot reproduce this, please show me the demo code.
Sorry, something went wrong.
a.lua
local abc = require("abc")
abc.lua (https://0x0.st/--mG.lua)
In abc.lua 1688 line, need change
-- return setmetatable(tag, tag.mt) tag = setmetatable(tag, tag.mt) return tag
92562f4
No branches or pull requests
Describe the bug
can't get completion from
return setmetatable()
Expected behavior
because
setmetatable(t,t2)
will return thope get completion from
return setmetatable(t,t2)
now I have to
The text was updated successfully, but these errors were encountered: