diff options
| author | Jonas Maier <jonas@x77.dev> | 2026-06-06 20:49:07 +0200 |
|---|---|---|
| committer | Jonas Maier <jonas@x77.dev> | 2026-06-06 20:49:07 +0200 |
| commit | 150c732eefce15f142681b99ccdc8e22e9a05e04 (patch) | |
| tree | 249d6ef2b88876aab24d38b0136493072758e9b8 /src/regex/mod.rs | |
| parent | 24d41bb4daf081bb9cd63a2107b28b1878594ed3 (diff) | |
| download | pish-150c732eefce15f142681b99ccdc8e22e9a05e04.tar.gz | |
regex: perf
Diffstat (limited to 'src/regex/mod.rs')
| -rw-r--r-- | src/regex/mod.rs | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/regex/mod.rs b/src/regex/mod.rs index f10a92d..cdbfe0d 100644 --- a/src/regex/mod.rs +++ b/src/regex/mod.rs @@ -3,7 +3,7 @@ mod byte_range; pub mod dfa; pub mod enfa; pub mod simple; -mod decision_tree; +pub mod decision_tree; #[derive(PartialEq, Eq, Debug, Clone, Copy, Hash)] pub enum LookDirection { @@ -284,7 +284,6 @@ impl RegexEngine for CompiledPattern { macro_rules! all_engines { ($ty_name:ident, $($x:ident : $ty:ty,)*) => { - #[derive(Debug)] pub struct $ty_name { $(pub $x: Option<$ty>,)* } |
