Return the uint32 instance associated with val.

Property definitions

nitc $ NaiveInterpreter :: uint32_instance
	# Return the uint32 instance associated with `val`.
	fun uint32_instance(val: UInt32): Instance
	do
		var t = mainmodule.uint32_type
		var instance = new PrimitiveInstance[UInt32](t, val)
		init_instance_primitive(instance)
		return instance
	end
src/interpreter/naive_interpreter.nit:270,2--277,4