接口 CallHandler
-
public interface CallHandlerThis handler is invoked by theCallResolverwhenever new method calls have been resolved in the code.
-
-
方法概要
所有方法 实例方法 抽象方法 修饰符和类型 方法 说明 voidhandleCall(Call call, TracedStack stack, TracedVariables localVariables)Will be called for every newly discovered method call in the code.
-
-
-
方法详细资料
-
handleCall
void handleCall(Call call, TracedStack stack, TracedVariables localVariables)
Will be called for every newly discovered method call in the code.- 参数:
call- TheCallthat was foundstack- stack state before the calllocalVariables- local variables array state before the call
-
-