-
Notifications
You must be signed in to change notification settings - Fork 78
Rascal support for working with error trees #2304
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
Merged
Merged
Conversation
This file contains hidden or 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
…rascal into error-tree-semantics/tests
Tests for error tree semantics in Rascal
…ging-fruit Implemented low-hanging fruit from error tree support
Memoization of amb nodes in visit
Deep match amb child memoization
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## main #2304 +/- ##
========================================
Coverage 47% 47%
- Complexity 6368 6440 +72
========================================
Files 764 764
Lines 63194 63286 +92
Branches 9432 9454 +22
========================================
+ Hits 29980 30124 +144
+ Misses 30990 30891 -99
- Partials 2224 2271 +47 ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
This PR contains the interpreter implementation of most of the conclusions Rascal Amendment Proposal #16: Support for error trees in Rascal
The only exception is that error tree support for "indexed field assignment" is not implemented as regular indexed field assignment is not implemented in the interpreter anyway.
Parse error recovery was added to Rascal in PR #2038.
When parsing with
allowRecovery=true
, the resulting parse trees can contain error and skipped nodes.Working with error trees at the appl/prod level is possible but cumbersome. This tracking PR will add better support for working with these trees.
The following pull requests contribute to this one: