Package org.teavm.dependency
Interface MethodDependencyInfo
-
- All Known Implementing Classes:
MethodDependency
public interface MethodDependencyInfo
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description intgetParameterCount()MethodReferencegetReference()ValueDependencyInfogetResult()ValueDependencyInfogetThrown()ValueDependencyInfogetVariable(int index)intgetVariableCount()ValueDependencyInfo[]getVariables()booleanisCalled()booleanisMissing()booleanisUsed()
-
-
-
Method Detail
-
getVariables
ValueDependencyInfo[] getVariables()
-
getVariableCount
int getVariableCount()
-
getVariable
ValueDependencyInfo getVariable(int index)
-
getParameterCount
int getParameterCount()
-
getResult
ValueDependencyInfo getResult()
-
getThrown
ValueDependencyInfo getThrown()
-
getReference
MethodReference getReference()
-
isUsed
boolean isUsed()
-
isCalled
boolean isCalled()
-
isMissing
boolean isMissing()
-
-