You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Straight out of the ASF+SDF playbook. Identifiers are usually ambiguous with keywords. It's important to be able to address this with negation disambiguation. It's technically possible to implement this by hand now on top of the filter construct, but there may be a nicer algorithmic way. At the very least, the syntax can be made a lot better.
The text was updated successfully, but these errors were encountered:
Just a quick question: Is there documentation or an example of how to use the filter construct? In the README you mention it under
Other useful features that are implemented or planned
Thanks in advance and very cool work! (I have worked with SDF3 before and loved its features, but it really isn't very accessible, so this project looks nice indeed!)
I think a good starting point for filter is the more limited \ construct implemented in gll-combinators. Basically the essence of the idea is that you have something like this:
It's literally just a negation matcher. This is decidable in any regular context (and undecidable in general context-free contexts). The idea is that you check the match against both sides, and it only matches if the left side matches and the right side does not match.
Wow, thanks for the quick answer. Nice, didn't know about \.
For more complicated things (e.g. disambiguation filter for precedence and associativity), I have now looked into the filter tests on how to use them (for other people searching for that).
Straight out of the ASF+SDF playbook. Identifiers are usually ambiguous with keywords. It's important to be able to address this with negation disambiguation. It's technically possible to implement this by hand now on top of the
filter
construct, but there may be a nicer algorithmic way. At the very least, the syntax can be made a lot better.The text was updated successfully, but these errors were encountered: