-
Notifications
You must be signed in to change notification settings - Fork 62
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
comby doesn't work correctly with a single quote in haskell #217
Comments
Hey, thanks for the note. You're right, the matcher is too strict here, expecting |
Can be closed? |
This is fixed, but not released yet. I'll release an updated version today. |
@rvantonder I've seen you just released the new version, is there a change log somewhere? |
Hey @s0kil I was just writing it up and editing the release notes--I should probably have done that before publishing :-) Check out https://github.com/comby-tools/comby/releases/tag/1.1.0 |
Describe the bug
A single quote in Haskell can be used not only as a delimeter for
Char
(e.g."asdf" == ['a','s','d','f']
) but also as a part of an identifier (e.g.s = 1; s' = s + 1
). It seems that the current haskell matcher can't tell the second case from the first.Reproducing
Expected behavior
To match
hello
in the second example.The text was updated successfully, but these errors were encountered: