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> Taccept(VertexVisitor<T> visitor) getSite()booleanisNew()Does this call vertex correspond to anewinstruction?If possible, returns a String representation ofthisthat 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 anewinstruction? -
accept
-
toString
-
toSourceLevelString
Description copied from class:VertexIf possible, returns a String representation ofthisthat 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:
toSourceLevelStringin classVertex
-