ieventdispatcher.hx

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

HX
11
字号
package flash.events;extern interface IEventDispatcher {	function new() : 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 willTrigger(type : String) : Bool;}

⌨️ 快捷键说明

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