Subj : Re: Enumerating standard class properties & methods To : Sterling Bates From : Brendan Eich Date : Wed Dec 17 2003 12:22 pm Sterling Bates wrote: > As I understand it, JS_ResolveStandardClass is used for lazy standard class > initialization. What I'm trying to do is enumerate the methods of an object > of a standard class type. The fastest way I know of to determine an > object's class type is comparing the memory locations of the class structs > (that's how SM does it anyway), and from there I can return a list of the > standard class's methods. 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)? /be .