Subj : Re: How and where can I upload a change to the SpiderMonkey source-code? To : netscape.public.mozilla.jseng From : "Franky Braem" Date : Mon Feb 03 2003 08:42 pm "Thorsten R" wrote: > > I made a change to the SpiderMonkey C-Sources which was important for me, > otherwise SpiderMonkey wouldn't have been usable. I changed the > JSPropertySpec.TinyID member from type int8 (8-bit) to long, so I can pass a > pointer as attribute, which is required for my task. I also changed all > related functions and inner structures, like the JSScopeProperty structure, > to handle the long type. Why are you doing this? I thought that the id is used in the get/set callbacks to know which property is called. Can't you use JS_SetPrivate to associate a pointer to your object? Franky. .