Property definitions

dom $ XMLStringAttr :: defaultinit
# An attribute with a String value
class XMLStringAttr
	super XMLAttribute

	# Value of the attribute without the double quotes
	var value: String

	# Type of delimiter (can be either " or ')
	var delimiter: Char

	redef fun to_s do return "{name}={delimiter}{value}{delimiter}"
end
lib/dom/xml_entities.nit:270,1--281,3