This project implements a top-down, left-to-right recursive-descent parser that generates parse trees and visualizes them using GraphViz. The parser analyzes source code according to a defined grammar ...
A simple calculator that can be used to perform parenthesised, single-digit, positive integer addition (for now), created using recursive descent parser to such arithmetic expressions. The motivation ...