Property definitions

dom $ XMLProcessingInstructionTag :: defaultinit
# Processing instructions start with <? and are to be read by a third-party application
class XMLProcessingInstructionTag
	super XMLTag

	# Raw content usable by the third-party application
	var content: String

	redef fun to_s do return "<?{tag_name} {content}?>"
end
lib/dom/xml_entities.nit:216,1--224,3