-
Notifications
You must be signed in to change notification settings - Fork 42
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
Emit KoreJson \right-assoc for collections #3651
Closed
Closed
Changes from all commits
Commits
Show all changes
13 commits
Select commit
Hold shift + click to select a range
248cace
prune any bottom states from a branch
goodlyrottenapple ed4d143
Add a custom conversion from TermLike to KoreJson which encodes colle…
goodlyrottenapple d7e4db6
Format with fourmolu
invalid-email-address 33ba3e1
Format with fourmolu
invalid-email-address a704ce8
revert kore/src/Kore/Rewrite.hs
goodlyrottenapple d1053d3
fix retry code in runTests.py
goodlyrottenapple 41b80d4
add rpc test returning a set
goodlyrottenapple 9d1a51b
add .DS_Store to .gitignore
goodlyrottenapple 9a803db
Merge remote-tracking branch 'origin/master' into sam/right-assoc-col…
goodlyrottenapple 17d941f
merge master
goodlyrottenapple dd56839
cleanup merge
goodlyrottenapple c94b056
Revert "cleanup merge"
goodlyrottenapple 290012c
Merge branch 'master' into sam/right-assoc-collections
goodlyrottenapple File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -51,3 +51,4 @@ hie.yaml | |
.hie/ | ||
.direnv | ||
*~ | ||
.DS_Store |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
We should completely delete
Internal.fromPattern
and rewrite the unit tests to use the newfromTermLike
to retain the test coverage.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.
Not sure what the best way to go about this is tbh.
fromPattern
is basically unused, but we use the inversetoParsedPattern
in a lot of places. The problem is we go fromKorePattern
toParsedPattern
which at some point gets turned into aTermLike
which we then turn back into aKorePattern
. Perhaps that path should be added and we keep the other unit tests??