Subj : Re: Rhino equivalent of JSNewEnumerateOp To : Larry Blair From : Igor Bukanov Date : Sat Apr 12 2003 04:00 pm Larry Blair wrote: > We're porting our JavaScript app from spidermonkey to rhino. Today's > new discovery is that in order to make 'for(p in o)' work, an > enumeration method was coded in. I've searched all over and I can't > find the rhino equivalent. How do I do this in rhino? > See Scriptable.getIds() which your application should subclass to provide list of properties of 'o' visible in for (in). Regards, Igor .