Sign In| Join
Get Help:Ask a Question in our Forums|Report a Bug|More Help Resources
All-Star
16423 Points
3329 Posts
Mar 05, 2007 01:23 PM|LINK
Ahh, yeah i've actually been doing this mostly in anonymous methods like:
MyClass.prototype.method = function(){
do you think doing something like:
MyClass.prototype.method = function MyClass$instance$method(){
to give the method a proper name would help any? or would it still be treated as an anonymous method since it's being called via a Function object?
JeffreyABeck...
All-Star
16423 Points
3329 Posts
Re: Javascript Debugging
Mar 05, 2007 01:23 PM|LINK
Ahh, yeah i've actually been doing this mostly in anonymous methods like:
MyClass.prototype.method = function(){
do you think doing something like:
MyClass.prototype.method = function MyClass$instance$method(){
to give the method a proper name would help any? or would it still be treated as an anonymous method since it's being called via a Function object?
Warning: Code is often uncompiled and possibly started life written on the back of a napkin. Beware typos.