Globally compile the table of the class mclass

In a link-time optimisation compiler, tables are globally computed In a true separate compiler (a with dynamic loading) you cannot do this unfortnally

Property definitions

nitc $ SeparateCompiler :: compile_class_to_c
	# Globally compile the table of the class mclass
	# In a link-time optimisation compiler, tables are globally computed
	# In a true separate compiler (a with dynamic loading) you cannot do this unfortnally
	fun compile_class_to_c(mclass: MClass)
	do
		var v = new_visitor
		var class_info = build_class_compilation_info(mclass)
		compile_class_vft(class_info, v)
		var is_already_managed = compile_class_if_universal(class_info, v)
		if not is_already_managed then
			compile_default_new(class_info, v)
		end
	end
src/compiler/separate_compiler.nit:1069,2--1081,4