EventDispatcher inner working

Hi - hopefully someone could help me out.

I want to simulate the Actionscript3.0 EventDispatcher in JavaScript.
If you have seen a rebuild of the EventDispatcher I would be pleased to know about that :slight_smile:

So if you dont know anything about JavaScript - thats not that important - maybe you know how you would rebuild the EventDispatcher in AS3, too
It should not be impossible to translate that to JavaScript :slight_smile:

I already got some features implemented (addEventListener with priority, dispatchEvent, removeEventListsner, hasEventListener)

Basically goes it like this:

addEventListener(type,listener,useCapture,priority,useWeakReference)

  • adds listener to internal array via array[type][priority].push(listener)

dispatchEvent(event)

  • iterates over array[event.type] and calls the assigned listeners in their priority/added order.

So i just added Event.stopImmediatePropagation()
and realized that my architecture must be incorrect -
I need Event to hold a public variable β€˜cancelled’ to tell the dispatcher that he can stop looping through the listeners.
How does the original EventDispatcher work without such a public var /
Hoes does the dispatching works

Thanks for any suggestions