submodule for macros

This commit is contained in:
Andrew Golovashevich 2025-11-15 22:16:53 +03:00
parent 1f54311854
commit 4bb7d6f005
4 changed files with 3 additions and 2 deletions

View File

@ -1,6 +1,5 @@
mod _keyword_impls; mod _keyword_impls;
mod parser_func; mod macros;
mod builder_type_t;
pub trait Predicate<C> { pub trait Predicate<C> {
fn check(&mut self, chr: C) -> bool; fn check(&mut self, chr: C) -> bool;

2
src/macros/mod.rs Normal file
View File

@ -0,0 +1,2 @@
mod builder_type_t;
mod parser_func;