Return the uint16 instance associated with val.

Property definitions

nitc $ NaiveInterpreter :: uint16_instance
	# Return the uint16 instance associated with `val`.
	fun uint16_instance(val: UInt16): Instance
	do
		var t = mainmodule.uint16_type
		var instance = new PrimitiveInstance[UInt16](t, val)
		init_instance_primitive(instance)
		return instance
	end
src/interpreter/naive_interpreter.nit:252,2--259,4