Class RetVertex
- java.lang.Object
-
- com.ibm.wala.cast.js.callgraph.fieldbased.flowgraph.vertices.Vertex
-
- com.ibm.wala.cast.js.callgraph.fieldbased.flowgraph.vertices.RetVertex
-
- All Implemented Interfaces:
com.ibm.wala.ipa.callgraph.propagation.PointerKey
public class RetVertex extends Vertex implements com.ibm.wala.ipa.callgraph.propagation.PointerKey
A return vertex represents all return values of a given function.
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description <T> Taccept(VertexVisitor<T> visitor)FuncVertexgetFunc()java.lang.StringtoSourceLevelString(com.ibm.wala.ipa.callgraph.IAnalysisCacheView cache)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).java.lang.StringtoString()
-
-
-
Method Detail
-
getFunc
public FuncVertex getFunc()
-
accept
public <T> T accept(VertexVisitor<T> visitor)
-
toString
public java.lang.String toString()
- Overrides:
toStringin classjava.lang.Object
-
toSourceLevelString
public java.lang.String toSourceLevelString(com.ibm.wala.ipa.callgraph.IAnalysisCacheView cache)
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
-
-