pmat 3.26.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
//! Python AST analysis - MIGRATION IN PROGRESS
//!
//! This module is being migrated to the new unified AST architecture.
//! It now acts as a facade, delegating to the compatibility layer.
//!
//! Migration status: Using compatibility shim
//! Target: server/src/ast/languages/python.rs

// Re-export compatibility functions
pub use super::ast_python_compat::{
    analyze_python_file, analyze_python_file_with_classifier, analyze_python_file_with_complexity,
};

// Keep any other types that were exported
// (The rest of the original implementation is preserved in ast_python_compat.rs)