val
.
# Return the int32 instance associated with `val`.
fun int32_instance(val: Int32): Instance
do
var t = mainmodule.int32_type
var instance = new PrimitiveInstance[Int32](t, val)
init_instance_primitive(instance)
return instance
end
src/interpreter/naive_interpreter.nit:261,2--268,4