if (x.constructorCall != null) {
JMethodCall superOrThisCall = (JMethodCall) dispatch(
"processExpression", x.constructorCall);
// Enums: wire up synthetic name/ordinal params to the super method.
if (enclosingType.isEnumOrSubclass() != null) {
JVariableRef enumNameRef = createVariableRef(
superOrThisCall.getSourceInfo(), ctor.getParams().get(0));
superOrThisCall.addArg(0, enumNameRef);
JVariableRef enumOrdinalRef = createVariableRef(
superOrThisCall.getSourceInfo(), ctor.getParams().get(1));
superOrThisCall.addArg(1, enumOrdinalRef);
}
superOrThisCall.setStaticDispatchOnly();