Is self the same as other in a serialization context?

Used to determine if an object has already been serialized.

Property definitions

serialization :: engine_tools $ Object :: is_same_serialized
	# Is `self` the same as `other` in a serialization context?
	#
	# Used to determine if an object has already been serialized.
	fun is_same_serialized(other: nullable Object): Bool do return is_same_instance(other)
lib/serialization/engine_tools.nit:50,2--53,87

serialization :: engine_tools $ String :: is_same_serialized
	redef fun is_same_serialized(o) do return self == o
lib/serialization/engine_tools.nit:64,2--52