Subj : Re: Bit size of variables in argv To : netscape.public.mozilla.jseng From : John Bandhauer Date : Thu Oct 30 2003 05:43 pm Native methods' argv array is *always* populated with pointer-sized jsvals. jsdoubles are passed by reference (to an immutable instance) not by value. The JSVAL_* types described at the top of jsapi.h are the only types that matter for argv. John. Sterling Bates wrote: > Having made good progress on the bridge class, one of the remaining issues > to resolve is the bit size of arguments in argv. SpiderMonkey goes all the > way up to unsigned 64 bit in JSUint64. > > What I'm hoping is that < 32bit values are padded to 32bit, and I simply > need to identify the 64bit values. > > Any ideas on how to do that? > > Thanks! > > Sterling > > .