nitc :: JavaCompilerVisitor :: autobox
value
to mtype
if needed.
# Box or unbox primitive `value` to `mtype` if needed.
private fun autobox(value: RuntimeVariable, mtype: MType): RuntimeVariable do
if mtype.is_java_primitive then return unbox(value, mtype)
return box(value, mtype)
end
src/compiler/java_compiler.nit:854,2--858,4