Fix compile-time error when callable reference requires boxing

This commit is contained in:
Alexey Andreev 2017-11-25 20:31:57 +03:00
parent a7ac256c47
commit a20d0b0855

View File

@ -714,7 +714,7 @@ public class ValueEmitter {
return value;
} else {
if (this.type instanceof ValueType.Primitive) {
throw new EmitException("Can't convert " + this.type + " to " + type);
return boxPrimitive(type);
}
Variable result = pe.getProgram().createVariable();
CastInstruction insn = new CastInstruction();
@ -726,6 +726,25 @@ public class ValueEmitter {
}
}
private ValueEmitter boxPrimitive(ValueType type) {
if (!(type instanceof ValueType.Object)) {
throw new EmitException("Can't convert " + this.type + " to " + type);
}
String targetClass = ((ValueType.Object) type).getClassName();
PrimitiveType primitiveType = ((ValueType.Primitive) this.type).getKind();
String boxClassName = getPrimitiveClassName(primitiveType);
ValueEmitter result = invokeValueOf(boxClassName);
if (!pe.getClassSource().isSuperType(targetClass, boxClassName).orElse(false)) {
throw new EmitException("Can't convert " + this.type + " to " + targetClass);
}
return result;
}
private ValueEmitter invokeValueOf(String cls) {
return pe.invoke(cls, "valueOf", ValueType.object(cls), this);
}
public ValueEmitter cast(NumericOperandType to) {
if (!(type instanceof ValueType.Primitive)) {
throw new EmitException("Can't cast non-primitive type: " + type);
@ -741,7 +760,7 @@ public class ValueEmitter {
ValueEmitter result = pe.newVar(ValueType.INTEGER);
CastNumberInstruction insn = new CastNumberInstruction(convertToNumeric(kind), to);
insn.setValue(variable);
insn.setValue(value.variable);
insn.setReceiver(result.getVariable());
pe.addInstruction(insn);