(src ast.PredicateSym)
| 101 | } |
| 102 | |
| 103 | func (dep depGraph) initNode(src ast.PredicateSym) { |
| 104 | if _, ok := dep[src]; !ok { |
| 105 | dep[src] = make(edgeMap) |
| 106 | } |
| 107 | } |
| 108 | |
| 109 | func (dep depGraph) addEdge(src ast.PredicateSym, dest ast.PredicateSym, negated bool) { |
| 110 | edges := dep[src] |
no outgoing calls
no test coverage detected