_sortPassedArgumentsByPriority() {
    this._passedHandlerArgs.sort((a, b) => {
      if (a.priority < b.priority) {
        return 1;
      }