Previous attempt tried to use @:extern and @:enum for Haxe 3, but enum is fine for both, which is actually what we were using before. Keep @:extern for Haxe 3, but use enum for both
23 lines
407 B
Haxe
23 lines
407 B
Haxe
package flash.errors;
|
|
|
|
@:native("flash.errors.SQLErrorOperation")
|
|
#if (haxe_ver >= 4.0) extern #else @:extern #end enum abstract SQLErrorOperation(String)
|
|
{
|
|
var ANALYZE;
|
|
var ATTACH;
|
|
var BEGIN;
|
|
var CLOSE;
|
|
var COMMIT;
|
|
var COMPACT;
|
|
var DEANALYZE;
|
|
var DETACH;
|
|
var EXECUTE;
|
|
var OPEN;
|
|
var REENCRYPT;
|
|
var RELEASE_SAVEPOINT;
|
|
var ROLLBACK;
|
|
var ROLLBACK_TO_SAVEPOINT;
|
|
var SCHEMA;
|
|
var SET_SAVEPOINT;
|
|
}
|