stack_maxima_parser/lib.rs
1//! Parser for STACK-Maxima
2//!
3//! For parsing STACK-logic.
4//!
5//! Fully position tracking, all parse results will provide position data
6//! both in lines/columns as well as bytes in the source.
7//!
8//! The lexer portion is tunable and can be adjusted to work with other
9//! decimal separators.
10//!
11//! The parser itself has logic for inserting missing multiplication-signs
12//! or for those working with STACK keyvals, missing semicolons.
13
14pub mod lexer;
15pub mod parser;
16mod parsertables;