Subj : Re: Delphi developers: headers for Mozilla JS engine To : Sterling Bates From : Brendan Eich Date : Sat Jul 12 2003 11:26 am Sterling Bates wrote: > I have a mostly-completed interface for Mozilla's javascript engine. The > links for both (unit & engine) are at the bottom. Cool. One bug: if (JS_GetProperty(cx, global, 'this.i', @rval) = JS_TRUE) then ShowMessage('this.i is an accessible property'); The id should be just 'i', not 'this.i'. I didn't see all the public JS_* entry points declared, and I wondered why all the private structs and js_* "library-private" entry points were declared. Those shouldn't be used outside the engine. /be .