We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Xml for example:
<?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE connection-config SYSTEM "http://www.game.ru/xml/cc/connection-config.dtd"> <connection-config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="http://www.game.ru/xml/cc/connection-config.xsd"> <connection-entry type="game" host="game.ru" ports="14444" description="test-server" /> <config-entry type="game" money5="enable" shmup="disable" /> </connection-config>
FastXml.hx fix:
public static function parse(s:String) : FastXML { var x = Xml.parse(s); if(x != null) for(node in x) { if( node.nodeType == Xml.Document || node.nodeType == Xml.Element ) return new FastXML(node); } return null; }
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Xml for example:
FastXml.hx fix:
The text was updated successfully, but these errors were encountered: