::obj.method => object.method.bind(object)
class Foo {
onInit() {
this.addListener('ready', ::this.onReady);
}
onDestroy() {
this.removeListener('ready', ::this.onReady);
}
onReady() {
// не будет снят в removeListener
}
}
.bind()
, которая сейчас входит в ES7 proposal