Re: Autocomplete javascript objects

2010-10-25 Thread John J Barton
We can solve this in Firefox 4.0, Firebug 1.8 with getOwnPropertyNames(). jjb On Oct 24, 5:09 pm, John J Barton wrote: > I've asked for help on mozilla.dev.platform. > jjb > > On Oct 24, 10:49 am, Nicolas Hatier wrote: > > > Ok. Having the default methods for, example, the Date object would > >

Re: Autocomplete javascript objects

2010-10-24 Thread John J Barton
I've asked for help on mozilla.dev.platform. jjb On Oct 24, 10:49 am, Nicolas Hatier wrote: > Ok. Having the default methods for, example, the Date object would > probably make my work easier as I always have to go check the > documentation - I work in 4-5 programming languages weekly, each of th

Re: Autocomplete javascript objects

2010-10-24 Thread Nicolas Hatier
Ok. Having the default methods for, example, the Date object would probably make my work easier as I always have to go check the documentation - I work in 4-5 programming languages weekly, each of them having a Date object with slightly different behavior and accessors. NH On 2010-10-24 13:14

Re: Autocomplete javascript objects

2010-10-24 Thread Donny Viszneki
I believe Firebug can only suggest completions that are enumerated when one scans for an object's properties. Using the C/C++ API ("JSAPI") properties can be set on an object which are not enumerated using property enumeration. (I do not believe Spidermonkey offers a Javascript API to the browser

Autocomplete javascript objects

2010-10-23 Thread Nicolas Hatier
I notice the javascript objects (String, Date, etc) don't get completion, is there a way to get that? Example (on the command line): > var d = new Date() > d.get| Nothing happens. I would like to get something like: > d.get|Day Regards Nicolas Hatier -- You received this message because you