My Google-ing on this has been unsuccessful, so here's the question:
I am wondering if it is possible to add my own keywords to extend the JavaScript language in a given framework.
For example
Object1 extends Object2
in the code would result in executing this method
inherit(Object1, Object2)
Where inherit is a function that takes care of copying the prototype, adding the parent's constructor, etc..
Is this doable? If so, how ? If not, any other nice way of doing this?
Thanks.