Community
Participate
Working Groups
this.newarray(DOUBLE_ARRAY);
break;
default :
this.anewarray(component);
if (component.isWildcard()) {
WildcardBinding wildcardBinding = (WildcardBinding) component;
final TypeBinding[] wildcardBounds=wildcardBinding.otherBounds;
final int boundsLength=wildcardBounds.length;
TypeBinding[] bounds = new TypeBinding[boundsLength + 1];
bounds[0] = wildcardBinding.bound;
System.arraycopy(wildcardBounds, 0, bounds, 1, boundsLength);
this.anewarray(Scope.greaterLowerBound(bounds)[0]);
} else {
}
public void newJavaLangError() {