()
| 4495 | // simple event implement |
| 4496 | |
| 4497 | function Event() { |
| 4498 | this.events = {}; |
| 4499 | } |
| 4500 | |
| 4501 | Event.prototype.addEventListener = function(type, listener) { |
| 4502 | this.events[type] = this.events[type] || []; |
nothing calls this directly
no outgoing calls
no test coverage detected