LL(1) parser
It is a top down parser that handles certain class of grammars called LL(1) grammar.
Run locally
Clone the repo locally and follow the steps in the terminal to install the requirements.
For Linux
python3 -m venv venv
source venv/bin/activate
pip3 install -r requirements.txt
For Windows
python -m venv venv
source venv\Scripts\activate.bat
pip install -r requirements.txt
To run the parser, run the following:
flask run
Then navigate to http://localhost:5000
in your web browser.
Grammar
Steps
The following steps are required to parse the input string with respect to the grammar: