Package soot.jimple.toolkits.callgraph

Examples of soot.jimple.toolkits.callgraph.Edge


            // by this method.
            CallGraph callGraph = Scene.v().getCallGraph();
            Iterator outEdges = callGraph.edgesOutOf(method);

            while (outEdges.hasNext()) {
                Edge edge = (Edge) outEdges.next();
                SootMethod targetMethod = edge.tgt();
                _add(targetMethod);
            }

            // Add the nodes called in the body of the method.
            _add(_getNodesAccessedInBodyOf(method));
View Full Code Here

TOP

Related Classes of soot.jimple.toolkits.callgraph.Edge

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.