Fill the initial values of the newly created instance recv.

recv.mtype is used to know what must be filled.

Property definitions

nitc $ NaiveInterpreter :: init_instance
	# Fill the initial values of the newly created instance `recv`.
	# `recv.mtype` is used to know what must be filled.
	fun init_instance(recv: Instance)
	do
		for npropdef in collect_attr_propdef(recv.mtype) do
			npropdef.init_expr(self, recv)
		end
	end
src/interpreter/naive_interpreter.nit:679,2--686,4