Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am currently working on a project compiler and language that is almost the same as Java. I was able to scan, parse and compile all the generated scanner,sym and parser classes from JFlex and java_cup. Now what i need to do is provide a graphic representation of the Abstract Syntax Tree or a simple parse tree whenever I am parsing an input file. The parse tree should be clear and should have indented nodes and terminals.

Now i ended up using astCUP, a class generator of some kind that is supposed to have methods and classes that will print the tree to the console.

ftp://ftp.heanet.ie/mirrors/sourceforge/a/as/astcup/ast%20extension%20for%20CUP%20manual.pdf

Now i have all the classes that was generated but for some reason these classes and around 15 more cannot be resolved to a type :

       * For_comp
       * Literal
       * For_compDerived4
       * For_compDerived3
       * For_compDerived2
       * For_compDerived
       * Local_variable_declaration
       * Local_variable_declarationDerived1
       * Type
       * Variable_declarators
       * Statement_expression
       * Statement_expression_list
       * Statement_expression_listDerived1
       * For_update_opt
       * For_update
       * For_update_optDerived2
       * For_update_optDerived1
       * Local_variable_declaration
       * For_initDerived1
       * For_initDerived2
       * For_init
       * For_init_opt
       * etc...

This is the whole project. I decided to upload the whole eclipse project to save code space. The test.txt file is the sample code that i have in mind.

The Main class is the driver that creates a scanner and a parser. I changed the generated sym class to be an interface and as you will see, the parser class is having errors and cannot resolve around 30 nodes to a type occuring at lines 870-ish to 1150-ish. That is the major problem that i have. I dont have an idea where did i go wrong so i need help in checking my CUP and flex file as well as the astCUP file( the one with the {: RETURN :} stuffs) that was generated using my emancup3.txt CUP specifications.

If in case those problems will be fixed, before I tackle semantics, I need help on how to output an abstract syntax tree representation to the console.

Here is my project

http://www.mediafire.com/download.php?crusxglgq3lphhm

Thank you so much for your time.

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.