News

An important step in the front-end process of a compiler is the parsing stage. After turning a statement into a set of tokens, the parser will compare the tokens to a ...
This project implements a parser for a set of production rules using the LR(1) parsing algorithm. It constructs a state diagram and parsing table based on the given grammar rules. The project reads ...