Write the core of the body to stream

Property definitions

nitc $ CCompilationUnit :: compile_body_core
	# Write the core of the body to `stream`
	fun compile_body_core(stream: Writer)
	do
		body_decl.write_to stream
		body_custom.write_to stream
		body_impl.write_to stream
	end
src/c_tools.nit:75,2--81,4