this.findFormalsForVariable(ctorCall);
break;
}
case ASTNode.SUPER_CONSTRUCTOR_INVOCATION: {
final SuperConstructorInvocation ctorCall = (SuperConstructorInvocation) node;
// if coming up from a argument.
if (containedIn(ctorCall.arguments(), this.name))
// if we don't have the source, no can do.
if (!ctorCall.resolveConstructorBinding().getDeclaringClass()
.isFromSource())
throw new DefinitelyNotEnumerizableException(
Messages.ASTNodeProcessor_SourceNotPresent, node);
else
// go find the formals.