This method is called to handle an implicitly loaded class,

i.e. a superclass of an explicitly loaded class A class loaded implicitly will not be fully allocated

Property definitions

nitc $ VirtualMachine :: load_class_indirect
	# This method is called to handle an implicitly loaded class,
	# i.e. a superclass of an explicitly loaded class
	# A class loaded implicitly will not be fully allocated
	fun load_class_indirect(mclass: MClass)
	do
		# It the class was already implicitly loaded
		if mclass.abstract_loaded then return

		load_supers(mclass)

		mclass.make_vt(self, false)
	end
src/vm/virtual_machine.nit:219,2--230,4