Package proguard.analysis
Interface CallHandler
-
public interface CallHandler
This handler is invoked by theCallResolver
whenever new method calls have been resolved in the code.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
handleCall(Call call, TracedStack stack, TracedVariables localVariables)
Will be called for every newly discovered method call in the code.
-
-
-
Method Detail
-
handleCall
void handleCall(Call call, TracedStack stack, TracedVariables localVariables)
Will be called for every newly discovered method call in the code.- Parameters:
call
- TheCall
that was foundstack
- stack state before the calllocalVariables
- local variables array state before the call
-
-