Report the end of a CDATA section.

SEE: start_cdata

Property definitions

sax $ LexicalHandler :: end_cdata
	# Report the end of a CDATA section.
	#
	# SEE: `start_cdata`
	fun end_cdata do end
lib/sax/ext/lexical_handler.nit:146,2--149,21

saxophonit $ SAXEventLogger :: end_cdata
	redef fun end_cdata do
		log.push(["end_cdata"])
		if lexical_handler != null then
			lexical_handler.end_cdata
		end
	end
lib/saxophonit/testing.nit:516,2--521,4