aboutsummaryrefslogtreecommitdiff
path: root/mingling_pathf/src/patterns/pack.rs
Commit message (Collapse)AuthorAgeFilesLines
* feat(pathf): add foreign item support with is_foreign flag魏曹先生25 hours1-8/+2
| | | | | | | | | | Add `AnalyzeItem::foreign()` and `AnalyzeItem::local()` constructors to distinguish items resolved via `use` imports from local definitions. Update `GroupPattern` to collect use imports at file and module levels, resolving `group!(TypeName)` against them. Migrate all pattern implementations to use the new constructors, and adjust `type_mapping_builder` to skip the file's own module prefix for foreign items.
* fix(patterns): broaden pattern detection to cover both bracketed forms魏曹先生38 hours1-1/+4
|
* docs: add module-level documentation and improve doc comments魏曹先生5 days1-0/+4
|
* chore: run cargo fmt and rearrange re-exports in mingling魏曹先生2026-07-021-10/+12
|
* feat(pathf): add build-time type path resolution system魏曹先生2026-06-281-0/+103
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!()`.