Init self from a XML file.

Property definitions

nlp $ NLPDocument :: from_xml_file
	# Init `self` from a XML file.
	init from_xml_file(path: String) do
		var file = new FileReader.open(path)
		var xml = file.read_lines
		file.close
		xml.shift # remove xml doctype
		xml.shift # remove xslt link
		from_xml(xml.join("\n").to_xml.as(XMLDocument))
	end
lib/nlp/stanford.nit:179,2--187,4