aboutsummaryrefslogtreecommitdiff
path: root/mingling_pathf/src/patterns.rs
Commit message (Collapse)AuthorAgeFilesLines
* feat(pathf): add build-time type path resolution system魏曹先生44 hours1-1/+20
| | | | | | | Add `mingling_pathf` sub-crate and `pathf` feature for automatic resolution of Mingling type module paths at build time. Scans source files, identifies macro invocations via pattern matchers, and generates mapping files consumed by `gen_program!()`.
* feat(mingling_pathf): add pattern analyzer module for struct detection魏曹先生46 hours1-3/+2
| | | | | | Add a `PatternAnalyzer` with an `AnalyzePattern` trait to detect and extract struct declarations from Rust source files, supporting nested inline modules.
* feat(mingling_pathf): add module path resolution and error handling魏曹先生47 hours1-0/+3
Introduce the core pathfinding infrastructure with `ModulePathMapping`, `MappingItem`, and `MinglingPathfinderError` types. Support recursive module traversal, `pub use` re-export hoisting, and standard Rust module resolution rules.