-
Notifications
You must be signed in to change notification settings - Fork 391
New issue
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
PSReviewUnusedParameter with script parameter and function using it #1678
Comments
This is actually a valid warning. If you dot-source that script and call . ./script.ps1 -a 'x'
f You're going to see that second call of |
@rjmholt Cannot reproduce it:
|
Ah, yeah, I think the parameter is also dot-sourced. Try this: . \a.ps1 -a 1
$a = 2
f |
Not sure I understand the problem here.
|
The It happens that in your scenario, due to dynamic scope, it is used thanks to scope inheritance. But PSScriptAnalyzer is a static analyser; it's impossible in general for it (or any static analyser) to be able to infer a variable usage that depends on dynamic scope inheritance. In addition to that, most of the time when a parameter is used in the way that you've used it, it's because the author is expecting lexical scope rather than dynamic scope and this represents a bug in their script. So because analysing variables from dynamic scope isn't something that PSScriptAnalyzer can feasibly provide guarantees about, and because depending on dynamic scope like this is generally not something that PSScriptAnalyzer is trying to encourage, getting a warning about the |
Thanks for the explanation. |
Yeah, that's the ideal method. Sometimes you do want to take advantage of dynamic scope, but that's usually in quite specific scenarios like:
But generally, and especially for functions, explicitly parameterising and passing those parameters is the recommended way to do things, because:
|
Can this be considered as a reasonable workaround or should it be also reported as unused parameter ? param(
$a
)
$a = $a
function f
{
echo $a
} |
Before submitting a bug report:
Steps to reproduce
Expected behavior
No warnings
Actual behavior
Environment data
The text was updated successfully, but these errors were encountered: