Subj : Re: unknown method resolve To : zwetan From : Brendan Eich Date : Wed Oct 13 2004 07:37 pm > If equivalent behaviour does not exist in on of the jseng, what would it > take to > add such behaviour in the Rhino engine ? SpiderMonkey supports a __noSuchMethod__ handler: js> o={__noSuchMethod__:function(){print(Array.prototype.toSource.call(arguments))}} [object Object] o.foo() ["foo", []] /be .