The canonical name of the class

It is the name of the class prefixed by the full_name of the intro_mmodule Example: "owner::module::MyClass"

Property definitions

nitc $ MClass :: _full_name
	# The canonical name of the class
	#
	# It is the name of the class prefixed by the full_name of the `intro_mmodule`
	# Example: `"owner::module::MyClass"`
	redef var full_name is lazy do
		return "{self.intro_mmodule.namespace_for(visibility)}::{name}"
	end
src/model/model.nit:448,2--454,4