Replace @:fakeEnum with @:enum abstract

@:fakeEnum support will be removed in HaxeFoundation/haxe#8189
This commit is contained in:
Jens Fischer
2019-04-20 01:00:03 +02:00
committed by Joshua Granick
parent d01f84ffbf
commit af9367b199
34 changed files with 216 additions and 182 deletions

View File

@@ -1,7 +1,8 @@
package flash.net;
@:fakeEnum(String) extern enum IPVersion
@:native("flash.net.IPVersion")
@:enum extern abstract IPVersion(String)
{
IPV4;
IPV6;
var IPV4;
var IPV6;
}