()
| 11751 | var fired = false; |
| 11752 | |
| 11753 | function g() { |
| 11754 | this.removeListener(type, g); |
| 11755 | |
| 11756 | if (!fired) { |
| 11757 | fired = true; |
| 11758 | listener.apply(this, arguments); |
| 11759 | } |
| 11760 | } |
| 11761 | |
| 11762 | g.listener = listener; |
| 11763 | this.on(type, g); |
nothing calls this directly
no outgoing calls
no test coverage detected