Report the end of DTD declarations.

This method is intended to report the end of the DOCTYPE declaration; if the document has no DOCTYPE declaration, this method will not be invoked.

SEE: start_dtd

Property definitions

sax $ LexicalHandler :: end_dtd
	# Report the end of DTD declarations.
	#
	# This method is intended to report the end of the
	# `DOCTYPE` declaration; if the document has no `DOCTYPE` declaration,
	# this method will not be invoked.
	#
	# SEE: `start_dtd`
	fun end_dtd do end
lib/sax/ext/lexical_handler.nit:73,2--80,19

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