bug fixes and performance improvements

This commit is contained in:
2023-05-07 22:35:38 +01:00
parent f3ce910f66
commit a604e40bad
167 changed files with 5965 additions and 4229 deletions

View File

@@ -6,11 +6,14 @@ mod comment;
mod expression;
mod sourcefile;
mod import;
mod enum_parser;
mod parse;
mod enum_filter;
mod placeholder;
mod context;
pub use sourcefile::line_parser;
pub use lexer::{lexer, Lexeme, Entry as LexerEntry};
pub use lexer::{lexer, Lexeme, Entry};
pub use name::is_op;
pub use parse::{parse, reparse, ParseError};
pub use number::{float_parser, int_parser};
pub use parse::{parse, ParseError};
pub use number::{float_parser, int_parser};
pub use context::ParsingContext;