Merge pull request #20243 from hvitved/rust/canonical-path-transitive-deps

Rust: Take transitive dependencies into account when computing canonical paths
This commit is contained in:
Tom Hvitved
2025-08-19 09:46:53 +02:00
committed by GitHub

View File

@@ -615,7 +615,7 @@ class ImplItemNode extends ImplOrTraitItemNode instanceof Impl {
if this.hasCanonicalPath(c2)
then c1 = c2
else (
c2 = c1.getADependency() or c1 = c2.getADependency()
c2 = c1.getADependency+() or c1 = c2.getADependency+()
)
)
}