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

Code refactoring: single case union deconstruction #15673

Open
Tracked by #15561
psfinaki opened this issue Jul 24, 2023 · 0 comments
Open
Tracked by #15561

Code refactoring: single case union deconstruction #15673

psfinaki opened this issue Jul 24, 2023 · 0 comments
Labels
Area-LangService-CodeRefactorings Suggested but not necessary code actions. Screwdrivers in VS. Feature Request
Milestone

Comments

@psfinaki
Copy link
Member

Refactor this code:

type CustomerId = CustomerId of id: int

let ProcessCustomerId (cid: CustomerId) = 
    match cid with
    | CustomerId id -> printfn $"{id}"

into the following code:

type CustomerId = CustomerId of id: int

let ProcessCustomerId (CustomerId id) = 
    printfn $"{id}"

Thanks @vzarytovskii for the idea.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Area-LangService-CodeRefactorings Suggested but not necessary code actions. Screwdrivers in VS. Feature Request
Projects
None yet
Development

No branches or pull requests

2 participants