(conf)
| 22 | } |
| 23 | |
| 24 | function EventEmitter(conf) { |
| 25 | this._events = new Object; |
| 26 | configure.call(this, conf); |
| 27 | } |
| 28 | |
| 29 | function searchListenerTree(handlers, type, tree, i) { |
| 30 | if (!tree) { |
nothing calls this directly
no outgoing calls
no test coverage detected