Is the retrieval of the specified feature flag supported given the current context?

Parameter:

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

Property definitions

sax $ XMLReader :: feature_readable
	# Is the retrieval of the specified feature flag supported given the current context?
	#
	# Parameter:
	#
	# * `name`: feature name, which is a fully-qualified URI.
	fun feature_readable(name: String): Bool is abstract
lib/sax/xml_reader.nit:42,2--47,53

saxophonit $ XophonReader :: feature_readable
	redef fun feature_readable(name) do
		return model.feature_readable(name)
	end
lib/saxophonit/saxophonit.nit:96,2--98,4

sax $ XMLFilterImpl :: feature_readable
	redef fun feature_readable(name) do
		if parent == null then
			return false
		else
			return parent.feature_readable(name)
		end
	end
lib/sax/helpers/xml_filter_impl.nit:84,2--90,4