Skip to content
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

Implement negation classes #28

Open
djspiewak opened this issue Feb 11, 2017 · 3 comments
Open

Implement negation classes #28

djspiewak opened this issue Feb 11, 2017 · 3 comments

Comments

@djspiewak
Copy link
Owner

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.

@danleh
Copy link

danleh commented Aug 10, 2017

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!)

@djspiewak
Copy link
Owner Author

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:

lazy val keywords = "def" | "val" | "var" | ...

lazy val id: Parser[Id] = ("""[a-zA-Z][a-zA-Z0-9]*""".r \ keywords) ^^ Id

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.

@danleh
Copy link

danleh commented Aug 10, 2017

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).

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

2 participants