val
.
# Return the int16 instance associated with `val`.
fun int16_instance(val: Int16): Instance
do
var t = mainmodule.int16_type
var instance = new PrimitiveInstance[Int16](t, val)
init_instance_primitive(instance)
return instance
end
src/interpreter/naive_interpreter.nit:243,2--250,4