emitWithScope (event, scope, ...args) {
    if (this.handlers[event]) {
      this.handlers[event].forEach((handler) => handler.apply(scope, args))
    }
  }