Return "CLASSNAME:#OBJECTID".

This function is mainly used with the redefinition of the inspect method

Property definitions

core :: abstract_text $ Object :: inspect_head
	# Return "CLASSNAME:#OBJECTID".
	# This function is mainly used with the redefinition of the inspect method
	protected fun inspect_head: String
	do
		return "{class_name}:#{object_id.to_hex}"
	end
lib/core/text/abstract_text.nit:1907,2--1912,4