From 66804e0bd2821e12ba0ed41de1133cd2b48febfa Mon Sep 17 00:00:00 2001 From: Valentin Popov Date: Fri, 3 Jul 2026 17:03:40 +0400 Subject: feat(stage2): materialize visual dependency graph --- crates/fparkan-runtime/src/lib.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'crates/fparkan-runtime/src/lib.rs') diff --git a/crates/fparkan-runtime/src/lib.rs b/crates/fparkan-runtime/src/lib.rs index d70b327..ca97409 100644 --- a/crates/fparkan-runtime/src/lib.rs +++ b/crates/fparkan-runtime/src/lib.rs @@ -516,12 +516,12 @@ fn load_mission_with_options( .iter() .map(|object| resource_name(&object.resource_name.raw)) .collect(); - let (prototype_graph, resolved_prototypes, mut prototype_report) = + let (mut prototype_graph, resolved_prototypes, mut prototype_report) = build_prototype_graph_report(&repository, vfs.as_ref(), &graph_roots); extend_graph_report_with_visual_dependencies( &repository, &mut prototype_report, - &prototype_graph, + &mut prototype_graph, &resolved_prototypes, ); if !prototype_report.is_success() { -- cgit v1.2.3