CompileTimeErrorCode.MULTIPLE_REDIRECTING_CONSTRUCTOR_INVOCATIONS,
initializer);
errorReported = true;
}
if (node.getFactoryKeyword() == null) {
RedirectingConstructorInvocation invocation = (RedirectingConstructorInvocation) initializer;
ConstructorElement redirectingElement = invocation.getStaticElement();
if (redirectingElement == null) {
String enclosingTypeName = enclosingClass.getDisplayName();
String constructorStrName = enclosingTypeName;
if (invocation.getConstructorName() != null) {
constructorStrName += '.' + invocation.getConstructorName().getName();
}
errorReporter.reportErrorForNode(
CompileTimeErrorCode.REDIRECT_GENERATIVE_TO_MISSING_CONSTRUCTOR,
invocation,
constructorStrName,