Skip to content

Commit b1b913d

Browse files
committed
Improve WEB UI
1 parent c4691c5 commit b1b913d

26 files changed

+3053
-0
lines changed

crates/diff-engine/src/graph_matcher.rs

Lines changed: 795 additions & 0 deletions
Large diffs are not rendered by default.

crates/diff-engine/src/lib.rs

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
pub mod changes;
77
pub mod cross_file_tracker;
88
pub mod engine;
9+
pub mod graph_matcher;
910
pub mod hungarian_matcher;
1011
pub mod matching;
1112
pub mod refactoring;
@@ -17,6 +18,11 @@ pub use changes::{
1718
ChangeAnalysis, ChangeCharacteristic, CharacteristicType, ClassificationEvidence,
1819
EvidenceType, AlternativeClassification, ChangeImpact, ImpactLevel, EffortLevel, RiskLevel
1920
};
21+
pub use graph_matcher::{
22+
GraphMatcher, GraphMatcherConfig, GraphMatchResult, FunctionMatch,
23+
FunctionMove as GraphFunctionMove, FunctionRename, DependencyChange,
24+
DependencyChangeType, MatchType as GraphMatchType
25+
};
2026
pub use engine::{DiffEngine, DiffError, DiffResult};
2127
pub use hungarian_matcher::{
2228
FunctionAssignment, HungarianMatchResult, HungarianMatcher, HungarianMatcherConfig,

0 commit comments

Comments
 (0)