Compiler Project

Started by
12 comments, last by Ravuya 16 years, 9 months ago
What kind of syntaxic grammer does your language have?

LL? LR? LALR? How many lookaheads?

What about your semantic grammar, what platform do you target? What kind of semantic grammar parsing do you use?
Advertisement
In my experience, the learning experience one gets from finishing 100% of a project is five times that of finishing 90% of the project. Definitely keep at it.
Quote:
What kind of syntaxic grammer does your language have?

LL? LR? LALR? How many lookaheads?


This is a rather difficult question to answer. The project does not use the standard methods for doing the job but uses a more intuitive approach. It would be understandable by someone who does not know what LALR grammars are.

Quote:
What about your semantic grammar, what platform do you target? What kind of
semantic grammar parsing do you use?


The targeted platform is the Intel processor, but it's not really set in stone. I use my own methods for grammar parsing. The program logically breaks down the code into the different types of statements in an intuitive top-down manner.
Check out Drunken Brawl at http://www.angelfire.com/games6/drunken_brawl!
So it's a top-down parser, and hence LL, then?

This topic is closed to new replies.

Advertisement