From 0c97eee05e8cd99b17ad17827d79afa739957db1 Mon Sep 17 00:00:00 2001 From: 魏曹先生 <1992414357@qq.com> Date: Sun, 28 Jun 2026 05:24:31 +0800 Subject: feat(mingling_pathf): add module path resolution and error handling 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. --- mingling_pathf/src/patterns.rs | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 mingling_pathf/src/patterns.rs (limited to 'mingling_pathf/src/patterns.rs') diff --git a/mingling_pathf/src/patterns.rs b/mingling_pathf/src/patterns.rs new file mode 100644 index 0000000..9aa5502 --- /dev/null +++ b/mingling_pathf/src/patterns.rs @@ -0,0 +1,3 @@ +pub trait AnalyzePattern { + +} -- cgit