From 2fa18e2190fb3c17892e13cb06d330e707dc05ec Mon Sep 17 00:00:00 2001 From: 魏曹先生 <1992414357@qq.com> Date: Mon, 29 Jun 2026 14:12:24 +0800 Subject: feat(pathf): add dispatch tree config and pass feature to analyzer Add `PathfinderConfig` struct to control dispatch tree extraction, and wire `use_dispatch_tree` through `DispatcherPattern`, `init_with_config`, and `analyze_and_build_type_mapping_for`. Expose config and wrapper from `mingling_core` under the `pathf` feature. --- mingling_pathf/src/lib.rs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'mingling_pathf/src/lib.rs') diff --git a/mingling_pathf/src/lib.rs b/mingling_pathf/src/lib.rs index 40fd2ec..81b2df6 100644 --- a/mingling_pathf/src/lib.rs +++ b/mingling_pathf/src/lib.rs @@ -1,6 +1,7 @@ +pub mod config; +pub mod error; pub mod module_pathf; pub mod pattern_analyzer; -pub mod error; pub mod patterns; mod type_mapping_builder; -- cgit