Return the byte instance associated with val.

Property definitions

nitc $ NaiveInterpreter :: byte_instance
	# Return the byte instance associated with `val`.
	fun byte_instance(val: Byte): Instance
	do
		var t = mainmodule.byte_type
		var instance = new PrimitiveInstance[Byte](t, val)
		init_instance_primitive(instance)
		return instance
	end
src/interpreter/naive_interpreter.nit:225,2--232,4