addInvoke

This method calls the matcher for the specified method.

----------------

本方法调用了指定方法的匹配器。

addInvoke(MethodMatcher().name("length"))

Return

MethodMatcher

Parameters

invokeMethod

invoke method matcher / 方法调用方法匹配器


fun addInvoke(methodDescriptor: String): MethodMatcher

Add a matcher that calls the method corresponding to the descriptor.

----------------

本方法调用了指定方法的匹配器。

addInvoke("Ljava/lang/String;->length()I")

Return

MethodMatcher

Parameters

methodDescriptor

invoke method descriptor / 方法调用方法的描述符


inline fun addInvoke(init: MethodMatcher.() -> Unit): MethodMatcher

See also