MCPcopy Create free account
hub / github.com/LFYSec/MScan / MethodEdge

Class MethodEdge

src/main/java/pascal/taie/analysis/graph/callgraph/MethodEdge.java:30–43  ·  view source on GitHub ↗

Represents call edge between caller and callee.

Source from the content-addressed store, hash-verified

28 * Represents call edge between caller and callee.
29 */
30record MethodEdge<CallSite, Method>(
31 Method caller, Method callee, CallSite callSite)
32 implements Edge<Method> {
33
34 @Override
35 public Method source() {
36 return caller;
37 }
38
39 @Override
40 public Method target() {
41 return callee;
42 }
43}

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected