When entering XML literals using E4X syntax in ActionScript the code highlighting can be broken:
package
{
public class XMLTest
{
public function XMLTest()
{
// here highlighting works ok
var aVariable:int = 0;
var aSprite:Sprite = new Sprite();
var xmlFragment:XML =
<root>
<node />
<node />
<node />
</root>;
// from now on all code highlighting is borked
var otherVariable:int = 0;
var yetAnother:Sprite = new Sprite();
}
}
}
There is a workaround:
package
{
public class XMLTest
{
public function XMLTest()
{
// here highlighting works ok
var aVariable:int = 0;
var aSprite:Sprite = new Sprite();
var xmlFragment:XML =
<root>
<node />
<node />
<node />
</root>; // / //<-- resets the parser and code remains valid
var otherVariable:int = 0;
var yetAnother:Sprite = new Sprite();
}
}
}