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
When defining a variable, and then checking if it doesn't exist and overriding it, it flags the original as unused.
Example:
local test = _G["Test"] -- This is flag as unused if not test then test = CreateFrame("Frame", "Test") end test:SomeFunc()
The text was updated successfully, but these errors were encountered:
Edit;
This appears to have just been started with the latest update, caused by 3901ebf
Sorry, something went wrong.
No branches or pull requests
When defining a variable, and then checking if it doesn't exist and overriding it, it flags the original as unused.
Example:
The text was updated successfully, but these errors were encountered: