forked from LeenkxTeam/LNXSDK
Update Files
This commit is contained in:
4
Kha/Tools/macos/std/flash/errors/ArgumentError.hx
Normal file
4
Kha/Tools/macos/std/flash/errors/ArgumentError.hx
Normal file
@ -0,0 +1,4 @@
|
||||
package flash.errors;
|
||||
|
||||
@:native("ArgumentError") extern class ArgumentError extends Error {
|
||||
}
|
8
Kha/Tools/macos/std/flash/errors/DRMManagerError.hx
Normal file
8
Kha/Tools/macos/std/flash/errors/DRMManagerError.hx
Normal file
@ -0,0 +1,8 @@
|
||||
package flash.errors;
|
||||
|
||||
@:require(flash10_1) extern class DRMManagerError extends Error {
|
||||
@:flash.property var subErrorID(get,never) : Int;
|
||||
function new(message : String, id : Int, subErrorID : Int) : Void;
|
||||
private function get_subErrorID() : Int;
|
||||
function toString() : String;
|
||||
}
|
4
Kha/Tools/macos/std/flash/errors/DefinitionError.hx
Normal file
4
Kha/Tools/macos/std/flash/errors/DefinitionError.hx
Normal file
@ -0,0 +1,4 @@
|
||||
package flash.errors;
|
||||
|
||||
@:native("DefinitionError") extern class DefinitionError extends flash.errors.Error {
|
||||
}
|
5
Kha/Tools/macos/std/flash/errors/EOFError.hx
Normal file
5
Kha/Tools/macos/std/flash/errors/EOFError.hx
Normal file
@ -0,0 +1,5 @@
|
||||
package flash.errors;
|
||||
|
||||
extern class EOFError extends IOError {
|
||||
function new(?message : String, id : Int = 0) : Void;
|
||||
}
|
13
Kha/Tools/macos/std/flash/errors/Error.hx
Normal file
13
Kha/Tools/macos/std/flash/errors/Error.hx
Normal file
@ -0,0 +1,13 @@
|
||||
package flash.errors;
|
||||
|
||||
extern class Error #if !flash_strict implements Dynamic #end {
|
||||
@:flash.property var errorID(get,never) : Int;
|
||||
var message : Dynamic;
|
||||
var name : Dynamic;
|
||||
function new(?message : Dynamic, id : Dynamic = 0) : Void;
|
||||
function getStackTrace() : String;
|
||||
private function get_errorID() : Int;
|
||||
static final length : Int;
|
||||
static function getErrorMessage(index : Int) : String;
|
||||
static function throwError(type : Class<Dynamic>, index : UInt, restArgs : haxe.extern.Rest<Dynamic>) : Dynamic;
|
||||
}
|
4
Kha/Tools/macos/std/flash/errors/EvalError.hx
Normal file
4
Kha/Tools/macos/std/flash/errors/EvalError.hx
Normal file
@ -0,0 +1,4 @@
|
||||
package flash.errors;
|
||||
|
||||
@:native("EvalError") extern class EvalError extends flash.errors.Error {
|
||||
}
|
5
Kha/Tools/macos/std/flash/errors/IOError.hx
Normal file
5
Kha/Tools/macos/std/flash/errors/IOError.hx
Normal file
@ -0,0 +1,5 @@
|
||||
package flash.errors;
|
||||
|
||||
extern class IOError extends Error {
|
||||
function new(?message : String, id : Int = 0) : Void;
|
||||
}
|
@ -0,0 +1,5 @@
|
||||
package flash.errors;
|
||||
|
||||
extern class IllegalOperationError extends Error {
|
||||
function new(?message : String, id : Int = 0) : Void;
|
||||
}
|
5
Kha/Tools/macos/std/flash/errors/InvalidSWFError.hx
Normal file
5
Kha/Tools/macos/std/flash/errors/InvalidSWFError.hx
Normal file
@ -0,0 +1,5 @@
|
||||
package flash.errors;
|
||||
|
||||
extern class InvalidSWFError extends Error {
|
||||
function new(?message : String, id : Int = 0) : Void;
|
||||
}
|
5
Kha/Tools/macos/std/flash/errors/MemoryError.hx
Normal file
5
Kha/Tools/macos/std/flash/errors/MemoryError.hx
Normal file
@ -0,0 +1,5 @@
|
||||
package flash.errors;
|
||||
|
||||
extern class MemoryError extends Error {
|
||||
function new(?message : String, id : Int = 0) : Void;
|
||||
}
|
4
Kha/Tools/macos/std/flash/errors/RangeError.hx
Normal file
4
Kha/Tools/macos/std/flash/errors/RangeError.hx
Normal file
@ -0,0 +1,4 @@
|
||||
package flash.errors;
|
||||
|
||||
@:native("RangeError") extern class RangeError extends flash.errors.Error {
|
||||
}
|
4
Kha/Tools/macos/std/flash/errors/ReferenceError.hx
Normal file
4
Kha/Tools/macos/std/flash/errors/ReferenceError.hx
Normal file
@ -0,0 +1,4 @@
|
||||
package flash.errors;
|
||||
|
||||
@:native("ReferenceError") extern class ReferenceError extends flash.errors.Error {
|
||||
}
|
5
Kha/Tools/macos/std/flash/errors/ScriptTimeoutError.hx
Normal file
5
Kha/Tools/macos/std/flash/errors/ScriptTimeoutError.hx
Normal file
@ -0,0 +1,5 @@
|
||||
package flash.errors;
|
||||
|
||||
extern class ScriptTimeoutError extends Error {
|
||||
function new(?message : String, id : Int = 0) : Void;
|
||||
}
|
4
Kha/Tools/macos/std/flash/errors/SecurityError.hx
Normal file
4
Kha/Tools/macos/std/flash/errors/SecurityError.hx
Normal file
@ -0,0 +1,4 @@
|
||||
package flash.errors;
|
||||
|
||||
@:native("SecurityError") extern class SecurityError extends Error {
|
||||
}
|
5
Kha/Tools/macos/std/flash/errors/StackOverflowError.hx
Normal file
5
Kha/Tools/macos/std/flash/errors/StackOverflowError.hx
Normal file
@ -0,0 +1,5 @@
|
||||
package flash.errors;
|
||||
|
||||
extern class StackOverflowError extends Error {
|
||||
function new(?message : String, id : Int = 0) : Void;
|
||||
}
|
4
Kha/Tools/macos/std/flash/errors/SyntaxError.hx
Normal file
4
Kha/Tools/macos/std/flash/errors/SyntaxError.hx
Normal file
@ -0,0 +1,4 @@
|
||||
package flash.errors;
|
||||
|
||||
@:native("SyntaxError") extern class SyntaxError extends flash.errors.Error {
|
||||
}
|
4
Kha/Tools/macos/std/flash/errors/TypeError.hx
Normal file
4
Kha/Tools/macos/std/flash/errors/TypeError.hx
Normal file
@ -0,0 +1,4 @@
|
||||
package flash.errors;
|
||||
|
||||
@:native("TypeError") extern class TypeError extends Error {
|
||||
}
|
4
Kha/Tools/macos/std/flash/errors/URIError.hx
Normal file
4
Kha/Tools/macos/std/flash/errors/URIError.hx
Normal file
@ -0,0 +1,4 @@
|
||||
package flash.errors;
|
||||
|
||||
@:native("URIError") extern class URIError extends flash.errors.Error {
|
||||
}
|
4
Kha/Tools/macos/std/flash/errors/UninitializedError.hx
Normal file
4
Kha/Tools/macos/std/flash/errors/UninitializedError.hx
Normal file
@ -0,0 +1,4 @@
|
||||
package flash.errors;
|
||||
|
||||
@:native("UninitializedError") extern class UninitializedError extends flash.errors.Error {
|
||||
}
|
4
Kha/Tools/macos/std/flash/errors/VerifyError.hx
Normal file
4
Kha/Tools/macos/std/flash/errors/VerifyError.hx
Normal file
@ -0,0 +1,4 @@
|
||||
package flash.errors;
|
||||
|
||||
@:native("VerifyError") extern class VerifyError extends Error {
|
||||
}
|
Reference in New Issue
Block a user