Is the modification 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_writable
	# Is the modification of the specified feature flag supported given the current context?
	#
	# Parameter:
	#
	# * `name`: feature name, which is a fully-qualified URI.
	fun feature_writable(name: String): Bool is abstract
lib/sax/xml_reader.nit:49,2--54,53

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

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