final TopLevelSourceElement element = sourceModel.getNthTopLevelDefn(iType);
if (element instanceof FunctionTypeDeclaration){
FunctionTypeDeclaration typeDeclaration = (FunctionTypeDeclaration) element;
if (typeDeclaration.getFunctionName().equals(functionName.getUnqualifiedName())){
SourceRange sourceRangeOfType = typeDeclaration.getSourceRangeOfDefn();
return new Precise(sourceRangeOfType, functionName, null, false);
}
}
}
}
return null;