Hello, I have a freeze when I puts a throw in a constructor, then a savage break is required.
Code:
package
{
public class TestError
{
public function TestError()
{
throw new Error();
}
}
}
Code:
package
{
public class Tests extends Sprite
{
public function Tests()
{
var e:TestError = new TestError();
}
}
}
Project Properties > Compiler Options > Additionnal Compiler Options > -default-script-limits 1000 10