language features - Extending javascript with keywords - Stack Overflow

My Google-ing on this has been unsuccessful, so here's the question:I am wondering if it is possib

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.

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.

Share Improve this question asked Oct 1, 2009 at 20:04 jd.jd. 4,0987 gold badges39 silver badges45 bronze badges
Add a ment  | 

4 Answers 4

Reset to default 6

You can't add keywords to the language but everything is an object and everything can be extended with prototyping.

I wouldn't normally link to crockford but he actually has quite a decent coverage of this , which will afford you syntax of the form foo.inherits(bar); which is about as good as one could wish for. This is quite a mon pattern.

Several JavaScript macros systems have been developed for this purpose, including sweet.js. Using the Sweet.js macro system, you can replace one keyword with another keyword (for example, replacing the function keyword with a def keyword.) However, in order to run sweet.js scripts, you must first pile them to JavaScript using the sweet.js piler.

It is easy to do like:

window.inherit = function(...params){your code here}

You can call window's methods without recoursing to window object, so you will be able to call like inherit(arr1, arr2)

It's not possible to add new keywords to JavaScript, no. You could create your own nice interface for creating classes though, perhaps drawing inspiration from one of the myriads of library, frameworks and toolkits out there already!

发布者:admin,转转请注明出处:http://www.yc00.com/questions/1743648827a4484214.html

相关推荐

  • language features - Extending javascript with keywords - Stack Overflow

    My Google-ing on this has been unsuccessful, so here's the question:I am wondering if it is possib

    1天前
    10

发表回复

评论列表(0条)

  • 暂无评论

联系我们

400-800-8888

在线咨询: QQ交谈

邮件:admin@example.com

工作时间:周一至周五,9:30-18:30,节假日休息

关注微信