Is this node annotated to not be made serializable?

Property definitions

nitc :: serialization_model_phase $ ANode :: is_noserialize
	# Is this node annotated to not be made serializable?
	private fun is_noserialize: Bool do return false
src/frontend/serialization_model_phase.nit:41,2--42,49

nitc :: serialization_model_phase $ ADefinition :: is_noserialize
	redef fun is_noserialize do
		return get_annotations("noserialize").not_empty
	end
src/frontend/serialization_model_phase.nit:52,2--54,4