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,8 +1,9 @@
package flash.security;
@:fakeEnum(String) extern enum ReferencesValidationSetting
@:native("flash.security.ReferencesValidationSetting")
@:enum extern abstract ReferencesValidationSetting(String)
{
NEVER;
VALID_IDENTITY;
VALID_OR_UNKNOWN_IDENTITY;
var NEVER;
var VALID_IDENTITY;
var VALID_OR_UNKNOWN_IDENTITY;
}