I am trying to solve a problem that came to my mind lately. Let's say we would want and would know how to make a point in having dynamic getters and setters in javascript, more like those in php (__get, __set). But as javascript does not have a catch-all property the only thing we could do is to provide a list of possible keys and iterate to add getters and setters on those only, and hope none other will ever come.
But the problem is not by far solved. So the next approach that came to my mind was to use a nasty hack with try and catch, so anytime a name would be undefined in an object to use the catch as a getter (at least) and then resume the code, hard and maybe pointless thing to do. But from here came my second problem, in an use such as this :
console.log(g.someundefinedproperty);
the result would have been a call to console.log showing undefined with no exception to be ever thrown.
And then it came to me: what if I would use the original window.undefined getter and setter, afterall it must be called everytime I screw up and mispell a word or something.
So I tried
Object.defineProperty(window, 'undefined', {
get : function ()
{
// functional code, including getting the caller and figuring out
// where we are, and what we have to do... easy :D
console.log('works');
},
set : function ()
{
// some couple more fine hacks here
console.log('this too');
}
});
But unfortunately the undefined property of window is configurable : false.
Other hacks tried were cloning the window object except the undefined and the inner window property. And on the new object to define the new undefined (please take note of the irony) and then window = mybetterwindow;
As this did not rose any issue my hopes were high, but yet again the system failed me as window can't be overwritten, by design.
I made a guess it has it's own getter and it's reinstanciate itself based on the prototype found in window.prototype or even better Window.prototype (note the uppercase).
As my final step in this experiment I had redefined undefined on this prototype hitted run. To no avail, nothing was changed... I tryed creating a new Window(), but Window is not a constructor, fail!
As I have run out of ideas I find myself here writting this pleading for help.
If you have any ideas how to solve the dynamic getters and setters problem, (the existencial problem of life, universe and everything else), in a way which does not modify in any way the... way I use the objects (and as bonus it doesn't need to break a hole in the fabric of time and space) or the syntax, I entreat you to speak or forever be silent :).
Thank you.
undefineddoes risk breaking a hole in the fabric of time and space. Maybe that's why it's been forbidden in ES5. This is an interesting question, however I foresee most answers and comments will be telling you that catch-all accessors are not needed, and harmful. Heck, you're even citing PHP as an example! :P – bfavaretto Dec 12 '12 at 22:15