Skip to content
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

Improve support for discard symbols #92

Open
Rekkonnect opened this issue Dec 30, 2024 · 0 comments
Open

Improve support for discard symbols #92

Rekkonnect opened this issue Dec 30, 2024 · 0 comments
Assignees
Labels
enhancement New feature or request
Milestone

Comments

@Rekkonnect
Copy link
Owner

Rekkonnect commented Dec 30, 2024

In the following code,

public class Program
{
    public static void Main(string[] args)
    {
        Method(out _);
    }
    
    private static void Method(out int value)
    {
        value = 3412;
    }
}

an IDiscardSymbol will be returned through the operation tree, or by selecting the _ alone and viewing the symbol info in the Details tab. This is not properly handled and can be prone to issues.

@Rekkonnect Rekkonnect added the enhancement New feature or request label Dec 30, 2024
@Rekkonnect Rekkonnect added this to the 1.2.2 milestone Dec 30, 2024
@Rekkonnect Rekkonnect self-assigned this Dec 30, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request
Projects
None yet
Development

No branches or pull requests

1 participant