this.params = params;
}
boolean doMatch(int astIndex, int actualIndex)
{
ASTParameter ast = (ASTParameter) astParameters.get(astIndex);
ClassExpression exp = ast.getType();
if (exp.isSimple())
{
String asString = ClassExpression.simpleType(params[actualIndex]);
if (!exp.matches(asString)) return false;