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
For example:
local a const = 3
This would assign local variable a the value of nil, and create a global variable const with the value of 3.
a
nil
const
3
Of course, the intend here was obviously to make a constant local variable a with the value of 3.
We might detect this based on if the localstat was terminated either by a newline or semicolon.
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
For example:
This would assign local variable
a
the value ofnil
, and create a global variableconst
with the value of3
.Of course, the intend here was obviously to make a constant local variable
a
with the value of3
.We might detect this based on if the localstat was terminated either by a newline or semicolon.
The text was updated successfully, but these errors were encountered: