我想通過收集特定的方法都明確和implicitly.For例如調用的方法: Class A {
@Autowired
C c;
foo() {
B b = new B();
b.print("abc");
if (somecondition) {
c.anotherPrint("def");
}
}
Class B {
p
我想實現一個分析(擴展DefaultOneStepAnalysis)在CHA算法中構造調用圖。有我的代碼三個部分組成: 1) method "doAnalyze" to return the "BasicReport"
2) method "analyze" to find call edges for each method in the given project
3) class "An