UncaughtErrorEvent.hx 296 B

1234567
  1. package flash.events;
  2. @:require(flash10_1) extern class UncaughtErrorEvent extends ErrorEvent {
  3. var error(default,never) : Dynamic;
  4. function new(?type : String, bubbles : Bool = true, cancelable : Bool = true, ?error_in : Dynamic) : Void;
  5. static var UNCAUGHT_ERROR(default,never) : String;
  6. }