Войти с помощью github
Форум /

Подскажите, на что будет указывать this.prototype в статических методах блока? Заинтересовала такая конструкция:

live : function() {
        this.liveBindTo('control', 'pointerclick', this.prototype._onPointerClick);
        return this.__base.apply(this, arguments);
    }

upd: Да, главное то не спросил! будет ли работать такая конструкция:

  someStaticMethod: function(){
      somePromise.then(
          this.prototype.blockMethod,
          this
      );
  }