eventdispatcher.hx

来自「ocaml编写的一个flash编译器」· HX 代码 · 共 13 行

HX
13
字号
package flash.events;extern class EventDispatcher implements flash.events.IEventDispatcher {	function new(?target : flash.events.IEventDispatcher) : Void;	function addEventListener(type : String, listener : Dynamic -> Void, ?useCapture : Bool, ?priority : Int, ?useWeakReference : Bool) : Void;	function dispatchEvent(event : flash.events.Event) : Bool;	function hasEventListener(type : String) : Bool;	function removeEventListener(type : String, listener : Dynamic -> Void, ?useCapture : Bool) : Void;	function toString() : String;	function willTrigger(type : String) : Bool;	private function dispatchEventFunction(event : flash.events.Event) : Bool;}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?