Property definitions

meta $ Class :: defaultinit
# This meta-class is the root the meta-class hierarchy
class Class[E: Object]
	# The name of the class
	var name: String

	redef fun to_s do return name
end
lib/meta/meta.nit:93,1--99,3