Property definitions

nitc $ SeparateCompiler :: thunk_todo
	fun thunk_todo(thunk: SeparateRuntimeFunction)
	do
		# Concrete instance of `SeparateRuntimeFunction` are already
		# handled by the compiler. Avoid duplicate compilation.
		if thunk isa SeparateThunkFunction then
			thunks_to_compile.add(thunk)
		end
	end
src/compiler/separate_compiler.nit:199,2--206,4