UncaughtErrorEvent.hx 337 B

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