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:
public string function myFunction(function doSomething){ return doSomething(); }
UNUSED_METHOD_ARGUMENT: Argument dosomething is not used in function. Consider removing it.
The text was updated successfully, but these errors were encountered:
I have confirmed that the example given above incorrectly reports the UNUSED_METHOD_ARGUMENT issue.
However, I have found that it does not report that issue when including the scope as below:
public string function myFunction(function doSomething){ return arguments.doSomething(); }
Sorry, something went wrong.
#550 arg types added, functions false positive fixed.
e6ecf15
#550 arg types added, functions false positive fixed. (#563)
d35e652
#550 arg types added, functions false positive fixed. (#565)
8ffff19
ryaneberly
No branches or pull requests
For example:
UNUSED_METHOD_ARGUMENT: Argument dosomething is not used in function. Consider removing it.
The text was updated successfully, but these errors were encountered: