java-callgraph
java-callgraph copied to clipboard
Can I generate call graph from source code file(.java)
trafficstars
I have several java source code files and they may not be compiled to jar files because of the absent of dependency jar file. I can analyze the AST of it. I wonder if I can analyze the call graph with this tool?
I have the same question @gousiosg Is it possible?
@masud-technope and @shiyy123 were you able to make a call graph without .jar files?
I have the same question @gousiosg Is it possible?
JavaParser is used for generate AST for java. https://github.com/javaparser/javaparser
The answer to the original question is no.