Class CallVertex
java.lang.Object
com.ibm.wala.cast.js.callgraph.fieldbased.flowgraph.vertices.Vertex
com.ibm.wala.cast.js.callgraph.fieldbased.flowgraph.vertices.CallVertex
A call vertex represents the possible callees of a function call or
new
expression.- Author:
- mschaefer
-
Method Summary
Modifier and TypeMethodDescription<T> T
accept
(VertexVisitor<T> visitor) getSite()
boolean
isNew()
Does this call vertex correspond to anew
instruction?If possible, returns a String representation ofthis
that refers to source-level entities rather thatn WALA-internal ones (e.g., source-level variable names rather than SSA value numbers).toString()
-
Method Details
-
getCaller
-
getSite
-
getInstruction
-
isNew
public boolean isNew()Does this call vertex correspond to anew
instruction? -
accept
-
toString
-
toSourceLevelString
Description copied from class:Vertex
If possible, returns a String representation ofthis
that refers to source-level entities rather thatn WALA-internal ones (e.g., source-level variable names rather than SSA value numbers). By default, just returns the results ofObject.toString()
- Overrides:
toSourceLevelString
in classVertex
-