The name of the module part, if any

Property definitions

nitc :: modelbuilder_base $ AQclassid :: mmodname
	# The name of the module part, if any
	fun mmodname: nullable String do
		var nqualified = n_qualified
		if nqualified == null then return null
		var nids = nqualified.n_id
		if nids.length <= 1 then return null
		return nids[1].text
	end
src/modelbuilder_base.nit:628,2--635,4