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

How to fold a rule? #136

Open
timotheecour opened this issue Jun 9, 2014 · 1 comment
Open

How to fold a rule? #136

timotheecour opened this issue Jun 9, 2014 · 1 comment

Comments

@timotheecour
Copy link

Here's an example of what I want to have:
A -> fold(B) C
B -> B1 / B2

In the parse tree, the operation fold(B) replaces B by it's children so that B doesn't appear (only B1 or B2)
This makes for shorted parse trees.
eg:

A(B(B1),C)
would become after applying the 'fold':
A(B1,C)

of course it wouldn't be called fold() but maybe %B or some other yet unused symbol

@PhilippeSigaud
Copy link
Collaborator

There is indeed no predefined operator for that.

Maybe with a semantic action? I'm not sure if that can be done, since an operator or a semantic action must return a parse tree. And an array of children is not a parse tree. Inside the semantic action, you do not have access to the parent tree...

A possible, more intrusive change would be to modify the sequence code to recognize a folded node and 'pull it upward', keeping only its children. Hmm...

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

No branches or pull requests

2 participants