(graph, name)
| 15787 | } |
| 15788 | |
| 15789 | function createDependencyGraphItem(graph, name) { |
| 15790 | if (!graph[name]) { |
| 15791 | graph[name] = { |
| 15792 | predecessor: [], |
| 15793 | successor: [] |
| 15794 | }; |
| 15795 | } |
| 15796 | |
| 15797 | return graph[name]; |
| 15798 | } |
| 15799 | |
| 15800 | function getAvailableDependencies(originalDeps, fullNameList) { |
| 15801 | var availableDeps = []; |
no outgoing calls
no test coverage detected
searching dependent graphs…