Interface ParameterMatchingStrategy

    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      boolean matches​(Call call, Parameter[] formals, Expression[] actuals, java.util.Set<Type>[] types)
      Yields true if and only if the parameter list of a cfg is matched by the given actual parameters, according to this strategy.
    • Method Detail

      • matches

        boolean matches​(Call call,
                        Parameter[] formals,
                        Expression[] actuals,
                        java.util.Set<Type>[] types)
        Yields true if and only if the parameter list of a cfg is matched by the given actual parameters, according to this strategy.
        Parameters:
        call - the call where the parameters are being matched
        formals - the parameters definition of the cfg
        actuals - the expression that are used as call parameters
        types - the runtime types of the actual parameters
        Returns:
        true if and only if that condition holds