1 unstable release
0.0.1 | Apr 26, 2019 |
---|
#100 in #expression-parser
29KB
544 lines
Expression Parser in Rust
Overview
A simple program that takes expressions like 5 + 8 * (7-1)
and parses them into a syntax tree. GRAMMAR.md explains the process in greater detail. A few things will be implemented like executing the syntax tree that lexer and parser create. This is really just an experiment to see how a context-free grammar-based parser might be implemented in Rust
.
Run the Code
A Makefile
makes running the code in this repository easy:
make
make test # runs the binary with appropriate parameters (especially `-e <expr>')
make err1 # demonstrates an error; `err2' and `err3' exist, too
But cargo
can be used, too. E.g., install the binary from crates.io with:
cargo install expr_parser
expr_parser --help # validates a successful installation
Create an AST Graph
graphviz
must be installed on your system. If you make
and make test
, .gv
and .pdf
files will be created in the project root. Refer to the Makefile
or run make help
for available parameters.
To-Do:
- execute AST via the vm's
evaluate
function - add additional ops to the grammar, e.g.
[]
,log2
,log10
- test parser using QuickCheck or something similar
- allow for dynamic user input
- allow for variable assignment and re-use of those variables (
$var
syntax), using a stack machine
License
The code in this repository is MIT-licensed (see LICENSE.md).
Dependencies
~755KB