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

Function dependencies

tests/transform_test.rs:23–33  ·  view source on GitHub ↗
(case: &Case)

Source from the content-addressed store, hash-verified

21}
22
23fn dependencies(case: &Case) -> HashSet<Aid> {
24 let mut deps = HashSet::new();
25
26 for binding in case.plan.into_bindings().iter() {
27 if let Binding::Attribute(binding) = binding {
28 deps.insert(binding.source_attribute.clone());
29 }
30 }
31
32 deps
33}
34
35#[test]
36fn run_transform_cases() {

Callers 1

run_transform_casesFunction · 0.70

Calls 1

into_bindingsMethod · 0.45

Tested by

no test coverage detected