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

Add "Refine hole" code action #1463

Merged
merged 11 commits into from Mar 1, 2021
Merged

Add "Refine hole" code action #1463

merged 11 commits into from Mar 1, 2021

Conversation

isovector
Copy link
Collaborator

@isovector isovector commented Feb 28, 2021

@TOTBWF wanted a tactic that "does the obvious thing," which is to introduce lambdas and use as many unique data constructors as possible. For example, it will fill in:

test :: z -> Reader r a
test = _

as

test :: z -> Reader r a
test z = Reader (\r -> _)

It's also GADT-aware, and will use a gadt constructor if it's the only one that will unify.

@isovector isovector changed the title Add Refine tactic Add "Refine hole" code action Feb 28, 2021
@isovector isovector added the merge me Label to trigger pull request merge label Mar 1, 2021
@mergify mergify bot merged commit c2f54a2 into haskell:master Mar 1, 2021
@isovector isovector deleted the refine branch March 1, 2021 20:18
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
merge me Label to trigger pull request merge
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

2 participants