Edit in JSFiddle

//super methoda erişim
this.prototype.__defineGetter__('super', function() {
    return this.__proto__.__proto__;
});

//statiklere erişim
this.prototype.__defineGetter__('self', function() {
    return this.constructor;
});