Openfl 2.2.7 Lime 2.1.2 second call Textfield.defaultTextFormat crash on windows

Hi,
With last lib Openfl 2.2.7 Lime 2.1.2 second call Textfield.defaultTextFormat crash app on windows.
Sample:
var format:TextFormat=new TextFormat(12, 0x000000);
format.align=TextFormatAlign.LEFT;
var t:TextField=new TextField();
t.defaultTextFormat=format;
t.setTextFormat(format);

trace(t.defaultTextFormat);

Note: This is when use haxeflag name="-dce full"
Without all ok.
Can anyone help understand how to fix this?

If you add this to your project.xml file, you’ll be able to see what code is being removed:

<haxedef name="dump=pretty" />

It’ll generate a “dump” folder with lots and lots of files inside, but the file you want is probably either Main.dump or TextField.dump. Check through both of those and see if you can spot anything wrong.