wp_primitives/scope/mod.rs
1//! Scope evaluation utilities
2//!
3//! This module provides tools for matching and evaluating scoped content
4//! with balanced delimiters.
5//!
6//! - [`ScopeEval`] - Basic scope matching with nested delimiters
7//! - [`EscapedScopeEval`] - Scope matching with escape sequence support
8
9mod basic;
10mod escaped;
11
12pub use basic::ScopeEval;
13pub use escaped::EscapedScopeEval;