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
Class representing a flow graph vertex. Vertices should never be instantiated directly, but
rather generated through a
VertexFactory.- Author:
- mschaefer
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionabstract <T> Taccept(VertexVisitor<T> visitor) 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).
-
Constructor Details
-
Vertex
public Vertex()
-
-
Method Details
-
accept
-
toSourceLevelString
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()
-