Question: Design and implement an LALR(1) parser for TinyJava which will parse programs according to the prescribed grammar. This process has the following steps: 1. The
Design and implement an LALR(1) parser for TinyJava which will parse programs according to the prescribed grammar. This process has the following steps:
1. The layout of the parser should conform to the EBNF grammar of TinyJava given in the link below:
https://ibb.co/mxoKqS
2. The parser should interact with the lexical analyzer to retrieve tokens as it needs them.
3. The parser may terminate execution if a syntax error is detected. No error recovery is required.
4. If the source program has no syntax errors, the result of the parse should be a source program listing (e.g., this can be printed by the lexical analyzer as the program is read) and a statement that parsing was successful.
Suggestion: Use the yacc, bison, or CUP tool to automatically construct a parser for TinyJava from an appropriate grammar specification.
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
