Subj : Re: Enumerating standard class properties & methods To : netscape.public.mozilla.jseng From : "Sterling Bates" Date : Wed Dec 17 2003 01:41 pm "Brendan Eich" wrote in message news:3FE0BAFA.3000209@meer.net... > Ok, so you have a date object in hand, and want to build the Object > Pascal bridgework needed to reflect its properties into O.P.? > > Why do that eagerly? Why not do it as each property is accessed (all > may not be needed)? It sounds like that would be used on a wrapper for the Date class. The functionality I'm attempting to emulate is a JS_Enumerate call on a Date-classed object. Rather than simply calling JS_Enumerate, however, I'll first determine whether the object's class is standard. If so, I return the stored list of functions (I may have to change the list for different js versions) for that class, otherwise call JS_Enumerate. The bridge's user won't need to know the origin, just receive the array of string values. Sterling .