Package org.teavm.callgraph
Interface CallSite
-
- All Known Implementing Classes:
DefaultCallSite
public interface CallSite
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Collection<? extends CallGraphNode>getCalledMethods()Collection<? extends CallGraphNode>getCallers()Collection<? extends TextLocation>getLocations(CallGraphNode caller)
-
-
-
Method Detail
-
getLocations
Collection<? extends TextLocation> getLocations(CallGraphNode caller)
-
getCalledMethods
Collection<? extends CallGraphNode> getCalledMethods()
-
getCallers
Collection<? extends CallGraphNode> getCallers()
-
-