component

seancorfield 2016-09-07T00:49:05.000005Z

Do you mean "a function that returns the dependencies for a specific (sub) component"?

donaldball 2016-09-07T01:22:26.000006Z

No, dependency-graph gives you that

donaldball 2016-09-07T01:22:32.000007Z

I mean something along these lines:

donaldball 2016-09-07T01:25:22.000009Z

I commonly have this pattern where I have a big complete system, but I sometimes only want to start a subset of it; just the bits necessary to work with one or more high-level components

seancorfield 2016-09-07T01:32:30.000010Z

Ah, gotcha… I tend to have a system creation function for each subsystem, that lists the dependencies, and would let me start just that subsystem — since I use that in the test suite for that subsystem.