ListenerList.prototype.emit1 = function (arg1) {
    if (this._count === 0) return false; // 0 listeners

    if (typeof this._methods === 'function') {
        this._methods.call(this._objects, arg1);