https://github.com/akshitadixit/lr-1-parser
Takes a grammar's production rules and creates a LR(1) parsing table, then finally parses the grammar to "accept" or "reject"
https://github.com/akshitadixit/lr-1-parser
compiler-design lr1 lr1-parser
Last synced: about 1 year ago
JSON representation
Takes a grammar's production rules and creates a LR(1) parsing table, then finally parses the grammar to "accept" or "reject"
- Host: GitHub
- URL: https://github.com/akshitadixit/lr-1-parser
- Owner: akshitadixit
- License: gpl-3.0
- Created: 2021-10-26T04:08:35.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2022-02-11T09:01:00.000Z (over 4 years ago)
- Last Synced: 2025-02-09T19:41:48.347Z (over 1 year ago)
- Topics: compiler-design, lr1, lr1-parser
- Language: Python
- Homepage: https://lr1-parser.herokuapp.com/
- Size: 403 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# LR-1--parser
Takes a grammar's production rules and creates a LR(1) parsing table, then finally parses the grammar to "accept" or "reject"

