Andrei Serdeliuc ॐ
Andrei Serdeliuc ॐ

Reputation: 5878

node.js - overloading functions

Is there a way to overload functions in node.js similar to __noSuchMethod__ ?

Upvotes: 3

Views: 2208

Answers (2)

Tor Valamo
Tor Valamo

Reputation: 33749

Like bxjx briefly mentioned, Node.js is based on Google's V8 javascript engine, meaning that any language constructs or features come from that. Seeing as it is non-standard, i don't think they will add it in the near future. Also i don't think Node will ever base itself on a non-official V8 fork, but who knows. You can still use that fork yourself.

Upvotes: 1

bxjx
bxjx

Reputation: 1838

That would be cool. It would open up DSL like capabilities found in ruby.

According to this conversation on the node.js google group, it's probably not going to happen. I can't think of another way around it without object.send('method'), but maybe it's possible.

Looks like people have forked V8 to add this sort of thing.

Upvotes: 1

Related Questions