Mainly worked on the rule matcher

Also fixed the name collector, and lambda parameters are no longer
resolved at parsing to support planned macro-based pattern matching.
The rule matcher clones a lot, the number of clones could be zero.
This commit is contained in:
2022-08-06 18:12:51 +02:00
parent 119f41076e
commit 329dea72b7
24 changed files with 777 additions and 134 deletions

View File

@@ -1,6 +1,6 @@
mod rule;
// mod rule;
mod executor;
mod bad_state_error;
mod rule_error;
pub use rule::Rule;
pub use bad_state_error::BadState;
// pub use rule::Rule;
pub use rule_error::RuleError;