Hello everyone.
I was exploring the use of JavaParser and had a problem...
Is there any way by which i can figure out that which all functions are called inside a particular function?
eg:
class Fun
{
void f1()
{
}
}
class Test
{
void fun()
{ Fun f=new Fun();
f.f1();
f2();
f3();
System.out.println("hello");
}
}
then the output should be somewhat like:
fun()
f.f1(), f2(),f3();
is there any way to do so?
Please suggest some way.