perl-semantic-analyzer 0.13.1

Semantic analysis and symbol extraction for Perl
Documentation
//! Semantic analysis, symbol extraction, and type inference.

/// Class model for Moose/Moo/Mouse intelligence.
pub mod class_model;
/// Go-to-declaration support and parent map construction.
#[cfg(not(target_arch = "wasm32"))]
pub mod declaration;
/// Export symbol extraction for Exporter-based Perl modules.
#[cfg(not(target_arch = "wasm32"))]
pub mod export_analyzer;
/// Lightweight workspace symbol index.
#[cfg(not(target_arch = "wasm32"))]
pub mod index;
/// Scope analysis for variable and subroutine resolution.
#[allow(missing_docs)]
pub mod scope_analyzer;
/// Semantic analyzer and token classification.
pub mod semantic;
/// Symbol extraction and symbol table construction.
pub mod symbol;
/// Type inference engine for Perl variable analysis.
pub mod type_inference;