innogames / ax3

AS3 to Haxe converter
MIT License
44 stars 10 forks source link

Xml parsing issue #9

Closed CrazyFlasher closed 3 years ago

CrazyFlasher commented 3 years ago
function getValue(xml:XML, key:String):String
{
      return xml.(@key == key).@value;
}
Invalid dot access expression: fieldName or @fieldName expected
nadako commented 3 years ago

Yeah this is a known limitation, only a small subset of E4X is supported and it's recommended to rewrite the unsupported things in AS3 to adapt it for conversion.