The class name of the object.

assert 5.class_name == "Int"

Property definitions

core :: abstract_text $ Object :: class_name
	# The class name of the object.
	#
	# ~~~
	# assert 5.class_name == "Int"
	# ~~~
	fun class_name: String do return native_class_name.to_s
lib/core/text/abstract_text.nit:1893,2--1898,56