(graph, name)
| 18801 | } |
| 18802 | |
| 18803 | function createDependencyGraphItem(graph, name) { |
| 18804 | if (!graph[name]) { |
| 18805 | graph[name] = {predecessor: [], successor: []}; |
| 18806 | } |
| 18807 | return graph[name]; |
| 18808 | } |
| 18809 | |
| 18810 | function getAvailableDependencies(originalDeps, fullNameList) { |
| 18811 | var availableDeps = []; |
no outgoing calls
no test coverage detected