perl_ts_heredoc_analysis/lib.rs
1//! Standalone heredoc analysis tools for Perl parsing
2//!
3//! This crate provides detection and analysis of problematic Perl patterns,
4//! particularly around heredocs, including anti-pattern detection, dynamic
5//! delimiter recovery, encoding-aware lexing, and statement tracking.
6
7pub mod anti_pattern_detector;
8pub mod context_sensitive;
9pub mod dynamic_delimiter_recovery;
10pub mod encoding_aware_lexer;
11pub mod runtime_heredoc_handler;
12pub mod string_utils;
13
14pub use perl_ts_statement_tracker as statement_tracker;