Is the specified feature flag recognized by this parser?

Parameter:

  • name: feature name, which is a fully-qualified URI.

Property definitions

sax $ XMLReader :: feature_recognized
	# 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

saxophonit $ XophonReader :: feature_recognized
	redef fun feature_recognized(name) do
		return model.feature_recognized(name)
	end
lib/saxophonit/saxophonit.nit:92,2--94,4

sax $ XMLFilterImpl :: feature_recognized
	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