-
-
Notifications
You must be signed in to change notification settings - Fork 389
Add change type signature test suite #2760
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
Conversation
…h/haskell-language-server into add-change-type-test-suite-no-921
@pepeiborra I dropped the other PR as it turns out 9.2.1 changed the structure of error messages. As a result I've removed the plugin from 9.2.1 but integrated the test suite |
Would you like to merge this while you're still working on the other PR? |
@@ -305,7 +305,7 @@ common selectionRange | |||
cpp-options: -DselectionRange | |||
|
|||
common changeTypeSignature | |||
if flag(changeTypeSignature) | |||
if flag(changeTypeSignature) && impl(ghc < 9.2.1) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Actually, this should probably be ghc < 9.2
otherwise it will allow 9.2
!
The test suite is now fixed, closing. |
This closes #2749.
Also disables the plugin for 9.2.1 as the test suite isn't passing (despite the functionality working)