MCPcopy Create free account
hub / github.com/comnik/declarative-dataflow / dependencies

Function dependencies

tests/aggregation_test.rs:25–35  ·  view source on GitHub ↗
(case: &Case)

Source from the content-addressed store, hash-verified

23}
24
25fn dependencies(case: &Case) -> HashSet<Aid> {
26 let mut deps = HashSet::new();
27
28 for binding in case.plan.into_bindings().iter() {
29 if let Binding::Attribute(binding) = binding {
30 deps.insert(binding.source_attribute.clone());
31 }
32 }
33
34 deps
35}
36
37fn run_cases(mut cases: Vec<Case>) {
38 for case in cases.drain(..) {

Callers 1

run_casesFunction · 0.70

Calls 1

into_bindingsMethod · 0.45

Tested by

no test coverage detected