Extracts graphs from Java code
src/main/resources/data
, we will call it <abspath>
./gradlew runIde -Pinput=<abspath>
This plugin builds a Graph
object that you will see in stdout.
Each edge is a triple (edgeType, vertex1, vertex2)
that is represented by vertex1 -> vertex2
.
Example
For instance, this output corresponds to a graph that has 1 edge of type LastRead from vertex a to b.
Graph for ...
LastRead: [a -> b]