Interface TypeArgumentInference

All Known Implementing Classes:
DefaultTypeArgumentInference

public interface TypeArgumentInference
Instances of TypeArgumentInference are used to infer the types of method type arguments when no explicit arguments are provided.

e.g. If we have a method declaration:


 <A,B> B method(A a, B b) {...}
 
And an invocation of that method:

 method("some Str", 35);
 
TypeArgumentInference will determine what the type arguments to type parameters A and B are. In Java, if T(A) = the type argument for a, in the above example T(A) == String and T(B) == Integer

For the Checker Framework we also need to infer reasonable annotations for these type arguments. For information on inferring type arguments see the documentation in JJLS8: https://docs.oracle.com/javase/specs/jls/se8/html/jls-18.html

  • Method Details

    • inferTypeArgs

      Infer the type arguments for the method or constructor invocation given by invocation.
      Parameters:
      typeFactory - the type factory used to create methodType
      invocation - a tree representing the method or constructor invocation for which we are inferring type arguments
      methodType - the declaration type of method elem
      Returns:
      the result which includes the inferred type arguments or an error message if they were not inferred.