vote up 0 vote down star

Is it possible to make YACC (or I'm my case MPPG) output an Abstract Syntax Tree (AST).

All the stuff I'm reading suggests its simple to make YACC do this, but I'm struggling to see how you know when to move up a node in the tree as your building it.

flag

1 Answer

vote up 1 vote down check

Have you looked at the manual (search for "parse tree" to find the spot)? It suggests putting node creation in an action with your left and right descendants being $1 and $3, or whatever they may be. In this case, yacc would be moving up the tree on your behalf rather than your doing it manually.

link|flag
Thanks, I'd seen this before in the lexx & yacc book. But i'd kind of written it off as a dead end. To get it to all hang together you need to modify the LexType which is define in the union tag %union { private State _state; ... LexValue(State state, object child1, object child2) {...} } This allows you to store a tree node as your state. You can then assign data to it using the $$ alias $$ = new LexValue(State.SchemaImport, $3, $5); Note: The lexer needs to push its token data into this structure as well. Easy when you know how... – Sprotty Jun 4 at 19:17

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.