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

Signature help not offered in positional pattern. #9101

Open
CyrusNajmabadi opened this issue Feb 23, 2016 · 2 comments
Open

Signature help not offered in positional pattern. #9101

CyrusNajmabadi opened this issue Feb 23, 2016 · 2 comments
Labels
Area-Compilers Area-IDE Bug Feature - Pattern Matching Pattern Matching help wanted The issue is "up for grabs" - add a comment if you are interested in working on it Language-C#
Milestone

Comments

@CyrusNajmabadi
Copy link
Member

CyrusNajmabadi commented Feb 23, 2016

public class Point
{
    public int X;
    public int Y;
    public void Deconstruct(out int XX, out int YY) => throw null;
    void M()
    {
        object o = null;
        if (o is Point($)) // <-- i should get sighelp here to make it clear what is being matched
        {

        }
    }
}
@gafter
Copy link
Member

gafter commented Feb 23, 2016

There is no positional pattern support at the moment. It is out of scope for the current punch-through.

@gafter gafter added this to the 2.0 (RC) milestone Feb 25, 2016
@gafter gafter modified the milestones: 2.0 (RC), 3.0 Apr 25, 2016
@gafter
Copy link
Member

gafter commented May 29, 2018

Updated issue to reflect current status of language.

@gafter gafter modified the milestones: 16.0, 16.1 Feb 26, 2019
@jcouv jcouv modified the milestones: 16.1, 16.2 Apr 23, 2019
@jcouv jcouv modified the milestones: 16.2, 16.3 Jun 19, 2019
@jcouv jcouv added the help wanted The issue is "up for grabs" - add a comment if you are interested in working on it label Jul 15, 2019
@jcouv jcouv removed this from the 16.3 milestone Jul 15, 2019
@jcouv jcouv added this to the Compiler.Next milestone Jul 15, 2019
@jaredpar jaredpar modified the milestones: Compiler.Next, Backlog Sep 12, 2023
@github-project-automation github-project-automation bot moved this to InQueue in Small Fixes Oct 22, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Area-Compilers Area-IDE Bug Feature - Pattern Matching Pattern Matching help wanted The issue is "up for grabs" - add a comment if you are interested in working on it Language-C#
Projects
Status: InQueue
Development

No branches or pull requests

5 participants