Returns the binding nodes for bindings that directly satisfy entry points.
()
| 156 | |
| 157 | /** Returns the binding nodes for bindings that directly satisfy entry points. */ |
| 158 | public ImmutableSet<BindingNode> entryPointBindingNodes() { |
| 159 | return entryPointEdgeStream() |
| 160 | .map(edge -> (BindingNode) incidentNodes(edge).target()) |
| 161 | .collect(toImmutableSet()); |
| 162 | } |
| 163 | |
| 164 | /** Returns the edges for entry points that transitively depend on a binding. */ |
| 165 | public ImmutableSet<DependencyEdge> entryPointEdgesDependingOnBindingNode( |
no test coverage detected