Examples of reportInvalidInvocation()


Examples of org.eclipse.jdt.internal.compiler.lookup.InferenceContext18.reportInvalidInvocation()

            if (innerContext != null) {
              if (!innerContext.hasResultFor(parameterType)) {
                argument.setExpectedType(parameterType);
                MethodBinding improvedBinding = innerContext.inferInvocationType(innerInvocation, parameterizedMethod);
                if (!improvedBinding.isValidBinding()) {
                  innerContext.reportInvalidInvocation(innerInvocation, improvedBinding);
                }
                if (innerInvocation.updateBindings(improvedBinding, parameterType)) {
                  resolvePolyExpressionArguments(innerInvocation, improvedBinding, scope);
                }
              } else if (innerContext.stepCompleted < InferenceContext18.BINDINGS_UPDATED) {
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.