sax :: XMLReader :: feature_recognized
Parameter:
name: feature name, which is a fully-qualified URI.
	# Is the specified feature flag recognized by this parser?
	#
	# Parameter:
	#
	# * `name`: feature name, which is a fully-qualified URI.
	fun feature_recognized(name: String): Bool is abstract
					lib/sax/xml_reader.nit:35,2--40,55
				
	redef fun feature_recognized(name) do
		return model.feature_recognized(name)
	end
					lib/saxophonit/saxophonit.nit:92,2--94,4
				
	redef fun feature_recognized(name) do
		if parent == null then
			return false
		else
			return parent.feature_recognized(name)
		end
	end
					lib/sax/helpers/xml_filter_impl.nit:76,2--82,4