Skip to main content

fuzzy_regex/parser/
mod.rs

1//! Parser module for fuzzy regex patterns.
2//!
3//! This module provides the lexer and parser for converting
4//! fuzzy regex pattern strings into an AST.
5
6pub mod ast;
7mod core;
8pub mod lexer;
9
10pub use ast::*;
11pub use core::{ParseResult, parse, parse_with_flags};