Class Vertex
- java.lang.Object
-
- com.ibm.wala.cast.js.callgraph.fieldbased.flowgraph.vertices.Vertex
-
- Direct Known Subclasses:
ArgVertex,CallVertex,CreationSiteVertex,FuncVertex,GlobalVertex,LexicalVarVertex,ParamVertex,PropVertex,PrototypeFieldVertex,ReflectiveCallVertex,RetVertex,UnknownVertex,VarVertex
public abstract class Vertex extends java.lang.ObjectClass representing a flow graph vertex. Vertices should never be instantiated directly, but rather generated through aVertexFactory.
-
-
Constructor Summary
Constructors Constructor Description Vertex()
-
Method Summary
All Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description abstract <T> Taccept(VertexVisitor<T> visitor)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).
-
-
-
Method Detail
-
accept
public abstract <T> T accept(VertexVisitor<T> visitor)
-
toSourceLevelString
public java.lang.String toSourceLevelString(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). By default, just returns the results ofObject.toString()
-
-