diff options
| author | Valentin Popov <valentin@popov.link> | 2026-07-03 16:03:40 +0300 |
|---|---|---|
| committer | Valentin Popov <valentin@popov.link> | 2026-07-03 16:03:40 +0300 |
| commit | 66804e0bd2821e12ba0ed41de1133cd2b48febfa (patch) | |
| tree | 2ac761d1e75ad7fde37dbd3a46f3b0150be28367 /crates/fparkan-runtime/src | |
| parent | ee9b318172bf50fadd90e0cfc364330fb85f778a (diff) | |
| download | fparkan-66804e0bd2821e12ba0ed41de1133cd2b48febfa.tar.xz fparkan-66804e0bd2821e12ba0ed41de1133cd2b48febfa.zip | |
feat(stage2): materialize visual dependency graph
Diffstat (limited to 'crates/fparkan-runtime/src')
| -rw-r--r-- | crates/fparkan-runtime/src/lib.rs | 4 |
1 files changed, 2 insertions, 2 deletions
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() { |
