Class FuncVertex
- java.lang.Object
-
- com.ibm.wala.cast.js.callgraph.fieldbased.flowgraph.vertices.Vertex
-
- com.ibm.wala.cast.js.callgraph.fieldbased.flowgraph.vertices.FuncVertex
-
- All Implemented Interfaces:
ObjectVertex,com.ibm.wala.ipa.callgraph.ContextItem,com.ibm.wala.ipa.callgraph.propagation.InstanceKey
public class FuncVertex extends Vertex implements ObjectVertex
A function vertex represents a function object (or, more precisely, all function objects arising from a single function expression or declaration).
-
-
Field Summary
Fields Modifier and Type Field Description protected com.ibm.wala.classLoader.IClassklass
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description <T> Taccept(VertexVisitor<T> visitor)com.ibm.wala.classLoader.IClassgetConcreteType()java.util.Iterator<com.ibm.wala.util.collections.Pair<com.ibm.wala.ipa.callgraph.CGNode,com.ibm.wala.classLoader.NewSiteReference>>getCreationSites(com.ibm.wala.ipa.callgraph.CallGraph CG)java.lang.StringgetFullName()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
-
getFullName
public java.lang.String getFullName()
-
accept
public <T> T accept(VertexVisitor<T> visitor)
-
toString
public java.lang.String toString()
- Overrides:
toStringin classjava.lang.Object
-
getCreationSites
public java.util.Iterator<com.ibm.wala.util.collections.Pair<com.ibm.wala.ipa.callgraph.CGNode,com.ibm.wala.classLoader.NewSiteReference>> getCreationSites(com.ibm.wala.ipa.callgraph.CallGraph CG)
- Specified by:
getCreationSitesin interfacecom.ibm.wala.ipa.callgraph.propagation.InstanceKey
-
getConcreteType
public com.ibm.wala.classLoader.IClass getConcreteType()
- Specified by:
getConcreteTypein interfacecom.ibm.wala.ipa.callgraph.propagation.InstanceKey
-
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
-
-