1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
//! Realized per-language capability matrix for the dashboard graph routes.
//!
//! Extracts plain path lists from the index (and optional call edges) and hands
//! them to [`language_capability_matrix_realized`], so the dashboard legend can
//! show real per-language coverage (symbols / imports / calls) for *this*
//! project rather than only static capability flags.
use crateCallEdge;
use crateProjectIndex;
use crate;
/// Build the realized capability matrix from an index. `call_edges` is `Some`
/// only where call-graph data exists (the call-graph route); the dependency
/// route passes `None`, leaving `calls_found` unmeasured rather than guessing.
pub