-
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
Variables, defined with "-Option AllScope", in Nested Function reports "assigned but never used". #1669
Comments
This is really an issue for PSScriptAnalyzer. See #1641. |
Robert,
Thank you for letting me know where this issue belongs. To be honest, one
of my ToDos is learning GitHub. Is there a way for me to move the issue I
opened to PSScriptAnalyzer? Or do I need to create a new issue in that
section? And if the latter, then do I need to do something with the old
issue I opened?
Thank you for your help,
Darin
…On Tue, Apr 27, 2021 at 5:53 PM Robert Holt ***@***.***> wrote:
This is really an issue for PSScriptAnalyzer. See #1641
<#1641>.
—
You are receiving this because you authored the thread.
Reply to this email directly, view it on GitHub
<#1669 (comment)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/ABU36FI4EGBIMFXUY3BQ2GLTK4567ANCNFSM43V4ZO7Q>
.
|
I've already moved it over — the issue and your reply are already in the PSScriptAnalyzer repo. In terms of the actual issue itself, your usage is fairly unusual and hard to analyse, but given the explicit use of I've marked it as up-for-grabs, since it's not a change the core team is likely to implement within the medium term. |
Robert,
Thank you for moving it over. As for my "fairly unusual" usage, I found
another way of doing what I was trying. So this may be a case of "Just
because you can do something doesn't mean you should." But I don't regret
experimenting. Using Set-Variable in this way almost turns a function into
a temporary virtual class with the nested functions as its methods. I may
someday find a valid need for this,
Darin
…On Wed, Apr 28, 2021 at 11:25 AM Robert Holt ***@***.***> wrote:
Is there a way for me to move the issue I opened to PSScriptAnalyzer?
I've already moved it over — the issue and your reply are already in the
PSScriptAnalyzer repo.
In terms of the actual issue itself, your usage is fairly unusual and hard
to analyse, but given the explicit use of Set-Variable might be something
that could be improved in the analyser.
I've marked it as up-for-grabs, since it's not a change the core team is
likely to implement within the medium term.
—
You are receiving this because you authored the thread.
Reply to this email directly, view it on GitHub
<#1669 (comment)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/ABU36FN4WAKX5A2CUNCO5RDTLAZGFANCNFSM43V4ZO7Q>
.
|
Yeah, no reason not to experiment. This is one of those cases where PSScriptAnalyzer might theoretically be able to, with some work, implement a more correct analysis, but really it should also have another rule specifically to say that there are other reasons not to do it. In this case, PSSA probably should warn you not to use |
I like the idea of a warning. It would be good to get the person's attention on the code so they consider alternatives. |
Issue Description
I'm learning PowerShell, and also new to Visual Studio Code, and ran into a situation where it would be useful to create nested functions that access the parent function's variables. To my pleasant surprise PowerShell can do this and I created the below code to try it out. But Visual Studio Code continues to complain "The variable 'Data' is assigned but never used." and "The variable 'Return' is assigned but never used." But PowerShell itself seems to be quite happy with the code and produces the results I expected.
It appears that Visual Studio code is not recognizing the work that "Set-Variable", with the "AllScope" option, does in making these variables accessible throughout the GetMatchingIndex method (I wouldn't be surprised if "AllScope" makes it accessible outside the class - coming from a C# background, PowerShell does some really weird things).
If VSCode is working correctly, and there really are 2 bugs in my code, then I guess I need someone to explain how to fix the code.
Environment Information
Visual Studio Code
PowerShell Information
Visual Studio Code Extensions
Visual Studio Code Extensions(Click to Expand)
The text was updated successfully, but these errors were encountered: