Package proguard.analysis
Interface CallHandler
- 
 public interface CallHandlerThis handler is invoked by theCallResolverwhenever new method calls have been resolved in the code.
- 
- 
Method SummaryAll Methods Instance Methods Abstract Methods Modifier and Type Method Description voidhandleCall(Call call, TracedStack stack, TracedVariables localVariables)Will be called for every newly discovered method call in the code.
 
- 
- 
- 
Method Detail- 
handleCallvoid handleCall(Call call, TracedStack stack, TracedVariables localVariables) Will be called for every newly discovered method call in the code.- Parameters:
- call- The- Callthat was found
- stack- stack state before the call
- localVariables- local variables array state before the call
 
 
- 
 
-