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 java.util.Collection<? extends CallGraphNode>getCalledMethods()java.util.Collection<? extends CallGraphNode>getCallers()java.util.Collection<? extends TextLocation>getLocations(CallGraphNode caller)
-
-
-
Method Detail
-
getLocations
java.util.Collection<? extends TextLocation> getLocations(CallGraphNode caller)
-
getCalledMethods
java.util.Collection<? extends CallGraphNode> getCalledMethods()
-
getCallers
java.util.Collection<? extends CallGraphNode> getCallers()
-
-