Accept only entities that are not a MAttribute or MAttributeDef

Property definitions

nitc $ ModelFilter :: accept_mentity_attribute
	# Accept only entities that are not a `MAttribute` or `MAttributeDef`
	fun accept_mentity_attribute(mentity: MEntity): Bool do
		if accept_attribute then return true
		if mentity isa MAttribute then return false
		if mentity isa MAttributeDef then return false
		return true
	end
src/model/model_filters.nit:181,2--187,4