pmat 3.16.0

PMAT - Zero-config AI context generation and code quality toolkit (CLI, MCP, HTTP)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#![cfg_attr(coverage_nightly, coverage(off))]
//! Big-O complexity analysis command handlers
//!
//! This module provides handlers for algorithmic complexity analysis
//! using pattern matching and heuristic approaches.

pub(crate) mod filters;
pub(crate) mod handlers;
pub(crate) mod output;

#[cfg(test)]
mod tests;

#[cfg(test)]
mod property_tests;

pub use handlers::handle_analyze_big_o;
pub use output::format_big_o_summary;