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?