Return the int8 instance associated with val.

Property definitions

nitc $ NaiveInterpreter :: int8_instance
	# Return the int8 instance associated with `val`.
	fun int8_instance(val: Int8): Instance
	do
		var t = mainmodule.int8_type
		var instance = new PrimitiveInstance[Int8](t, val)
		init_instance_primitive(instance)
		return instance
	end
src/interpreter/naive_interpreter.nit:234,2--241,4