Initial support for AIR

This commit is contained in:
Joshua Granick
2017-08-24 12:50:13 -07:00
parent f2a8092834
commit 9991e99fee
186 changed files with 2590 additions and 68 deletions

View File

@@ -0,0 +1,5 @@
package flash.html.script;
extern class Package extends flash.utils.Proxy {
function new(parent : Package, packageName : String, appDomain : flash.system.ApplicationDomain) : Void;
}

View File

@@ -0,0 +1,8 @@
package flash.html.script;
extern class PropertyEnumHelper {
function new(enumPropertiesClosure : Dynamic, getPropertyClosure : Dynamic) : Void;
function nextName(index : Int) : String;
function nextNameIndex(lastIndex : Int) : Int;
function nextValue(index : Int) : Dynamic;
}