Property definitions

nitc $ ErrorMEntityConflict :: defaultinit
# Multiple MEntities matching `mentity_name`
class ErrorMEntityConflict
	super CmdError

	# MEntity name provided
	var mentity_name: String

	# Conflicts for `mentity_name`
	var conflicts: Array[MEntity]

	redef fun to_s do
		var res = new Buffer
		res.append "Multiple entities for `{mentity_name}`:"
		for mentity in conflicts do
			res.append " `{mentity.full_name}`"
			if mentity != conflicts.last then res.append ","
		end
		return res.write_to_string
	end
end
src/doc/commands/commands_base.nit:196,1--215,3