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
This only seems to occur when the function hasn't been defined with a colon.
t:func should show a1, a2, like t2:func, and not t, a1.
t:func
a1, a2
t2:func
t, a1
local function func(t, a1, a2) end local t = { func = func, } local t2 = {} function t2:func(a1, a2) end t:func(1, 2) t2:func(1, 2)
The text was updated successfully, but these errors were encountered:
3e0e1d5
No branches or pull requests
This only seems to occur when the function hasn't been defined with a colon.
t:func
should showa1, a2
, liket2:func
, and nott, a1
.The text was updated successfully, but these errors were encountered: