On Jul 27, 10:59 am, Lapu <[email protected]> wrote:
> Hi John,
>
> Does Firebug provide data for building such outline window? Extension
> would need info about :
> - all varabiables, functions ( nested vars and fn() )
Yes and no. If the variables and functions exist, yes, else not. So :
function foo()
{
var bar = 1;
debugger;
}
If you run the function foo() and hit the debugger stmt, then bar
exists. Else it does not.
> - types of variables ( from jsdoc or other doc text - using js we dont
> have variable type )
yes, typeof(varible). you will get object, function, etc. Not very
useful.
> - private/public fn/var access ( scope info ? )
Yes, as above, if you are in a scope you can see it all, else not.
>
> I know that command line provide function list ( can you breifly tell
> how it works ? )
I guess you mean command completion? If you say
document.
then firebug evaluates "document" and lists the properties.
>
> If i can use Firebug module to get functions list build otuline view
> wont be difficult.
I think one can list the functions per source file, but objects per
source file will require Firefox features that have recent been
removed.
jjb
>
> ak
>
> On 22 Lip, 20:54, MeRiZ <[email protected]> wrote:
>
> > Hi John,
>
> > :) It's only idea, I will not implement/develop this feature.
>
> > On 22. 7. 2010 18:51, John J Barton wrote:
>
> > > I think this is a great Firebug extension idea, please let us know if
> > > you have problems in developing it.
>
> > > jjb
>
> > signature.asc
> > < 1KWyświetlPobierz
--
You received this message because you are subscribed to the Google Groups
"Firebug" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/firebug?hl=en.