Most files suffered major changes

- Less ambiguous syntax
- Better parser (Chumsky only does tokenization now)
- Tidy(|ier) error handling
- Facade for simplified embedding
- External code grouped in (fairly) self-contained Systems
- Dynamic action dispatch
- Many STL additions
This commit is contained in:
2023-08-17 20:47:08 +01:00
parent 751a02a1ec
commit 3fdabc29da
139 changed files with 4269 additions and 1783 deletions

View File

@@ -1,20 +1,19 @@
mod comment;
mod context;
mod decls;
mod enum_filter;
mod expression;
mod errors;
mod facade;
mod import;
mod lexer;
mod multiname;
mod name;
mod number;
mod placeholder;
mod sourcefile;
mod stream;
mod string;
pub use context::ParsingContext;
pub use facade::{parse, ParseError};
pub use facade::parse2;
pub use lexer::{lexer, Entry, Lexeme};
pub use name::is_op;
pub use number::{float_parser, int_parser};
pub use sourcefile::line_parser;