Subj : Rhino Javascript features To : netscape.public.mozilla.jseng From : ramirez@idconcepts.org (Edwin S. Ramirez) Date : Wed Oct 01 2003 01:48 pm Hello, Is the following supported by Rhino: js> o = new Object; [object Object] js> o = {a:7, get b() {return this.a+1; }, set c(x) {this.a = x/2}}; [object Object] js> o.a 7 js> o.b 8 js> o.c = 50 js> o.a 25 js> How about o.toSource()? -Edwin S. Ramirez- .