class A{
private Object a;
private Object a1;
private Object a2;
public void method(){
// Tons of code
code line using a;
// Tons of code
code line using a1;
}
}
现在我要列出或突出显示方法()中使用的所有字段。即结果应该是方法体中a,a1或突出显示a,a1的列表。