110011011102110311041105110611071108
for (JMethod entry : entryList) { cfa.traverseFrom(entry); } } deps.endDependencyGraph(); deps.close(); } }
110911101111111211131114111511161117
127212731274127512761277127812791280
deps.startDependencyGraph("initial", null); ControlFlowAnalyzer cfa = new ControlFlowAnalyzer(program); cfa.setDependencyRecorder(deps); cfa.traverseEntryMethods(); deps.endDependencyGraph(); deps.close(); } }
251252253254255256257258259260261
deps.startDependencyGraph("initial", null); ControlFlowAnalyzer cfa = new ControlFlowAnalyzer(jprogram); cfa.setDependencyRecorder(deps); cfa.traverseEntryMethods(); deps.endDependencyGraph(); deps.close(); return deps; } }
132213231324132513261327132813291330
110111021103110411051106110711081109
211212213214215216217218219220221
108810891090109110921093109410951096
for (List<JMethod> entryList : program.entryMethods) { for (JMethod entry : entryList) cfa.traverseFrom(entry); } deps.endDependencyGraph(); deps.close(); } }