List of usage examples for org.eclipse.jdt.internal.compiler.lookup Scope findExactMethod
public MethodBinding findExactMethod(ReferenceBinding receiverType, char[] selector, TypeBinding[] argumentTypes, InvocationSite invocationSite)
From source file:lombok.eclipse.agent.PatchVisibleForTesting.java
License:Open Source License
public static MethodBinding onFindExactMethod(final Scope scope, final ReferenceBinding receiverType, final char[] selector, final TypeBinding[] argumentTypes, final InvocationSite invocationSite) { return handleVisibleForTestingOnMethod(scope, scope.findExactMethod(receiverType, selector, argumentTypes, invocationSite)); }